mirror of
				https://github.com/kewlfft/ansible-aur.git
				synced 2025-11-04 10:02:30 +03:00 
			
		
		
		
	readme updated with auto functionning
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
				
			|||||||
# Ansible AUR package manager
 | 
					# Ansible AUR package manager
 | 
				
			||||||
Ansible module to use some AUR helpers. The following helpers are supported:
 | 
					Ansible module to use some AUR helpers. The following helpers are supported and automatically selected following the below order:
 | 
				
			||||||
- [pacaur](https://github.com/rmarquis/pacaur) (default)
 | 
					- [pacaur](https://github.com/rmarquis/pacaur)
 | 
				
			||||||
- [trizen](https://github.com/trizen/trizen)
 | 
					- [trizen](https://github.com/trizen/trizen)
 | 
				
			||||||
- [yaourt](https://github.com/archlinuxfr/yaourt)
 | 
					- [yaourt](https://github.com/archlinuxfr/yaourt)
 | 
				
			||||||
- [yay](https://github.com/Jguer/yay)
 | 
					- [yay](https://github.com/Jguer/yay)
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								aur.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								aur.py
									
									
									
									
									
								
							@@ -4,8 +4,8 @@ from ansible.module_utils.basic import *
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
helper_cmd = {
 | 
					helper_cmd = {
 | 
				
			||||||
    'trizen': ['env', 'LC_ALL=C', 'trizen', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
 | 
					 | 
				
			||||||
    'pacaur': ['env', 'LC_ALL=C', 'pacaur', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
 | 
					    'pacaur': ['env', 'LC_ALL=C', 'pacaur', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
 | 
				
			||||||
 | 
					    'trizen': ['env', 'LC_ALL=C', 'trizen', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
 | 
				
			||||||
    'yaourt': ['env', 'LC_ALL=C', 'yaourt', '-S', '--noconfirm', '--needed'],
 | 
					    'yaourt': ['env', 'LC_ALL=C', 'yaourt', '-S', '--noconfirm', '--needed'],
 | 
				
			||||||
    'yay': ['env', 'LC_ALL=C', 'yay', '-S', '--noconfirm'],
 | 
					    'yay': ['env', 'LC_ALL=C', 'yay', '-S', '--noconfirm'],
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user