ansible-aur/README.md

54 lines
1.8 KiB
Markdown
Raw Normal View History

2017-12-23 23:24:48 +03:00
# ansible-aur
Ansible module to use some AUR helpers. The following helpers are supported:
2017-12-23 20:27:42 +03:00
- pacaur (default)
- trizen
- yaourt
- yay
> Notes:
2017-12-23 21:52:39 +03:00
> * It is recommended to use the official *pacman* module for removals or for upgrades with the repositories, this module aims to cover the AUR,
> * Searches are limited to the AUR using the *--aur* parameter except for *yay* and *yaourt* which do not support it and systematically search the repositories,
> * A package is reinstalled only if an update is available using the *--needed* parameter except for *yay* which do not support it and systematically reinstalls,
2017-12-23 20:27:42 +03:00
## Options
|parameter|required |default |choices |comments|
|--- |--- |--- |--- |---|
2017-12-23 23:05:07 +03:00
|name |no | | |Name or list of names of the package(s) to install or upgrade.|
2017-12-23 20:27:42 +03:00
|upgrade |no |no |yes, no |Whether or not to upgrade whole system.|
|helper |no |pacaur |pacaur, trizen, yaourt, yay |Helper to use.|
> Note: Either *name* or *upgrade* is required, both can not be used together.
2017-12-23 20:27:42 +03:00
2017-12-23 23:24:48 +03:00
## Installing
2017-12-23 20:27:42 +03:00
1. Add as a submodule in your playbook:
2017-12-23 23:05:07 +03:00
```
mkdir -p library/external_modules
git submodule add git://github.com/kewlfft/ansible-aur.git library/external_modules/ansible-aur
```
2017-12-23 20:27:42 +03:00
2. Link the binary to the base of `library/`:
2017-12-23 23:05:07 +03:00
```
ln -s external_modules/ansible-aur/aur library/aur
```
2017-12-23 20:27:42 +03:00
2017-12-23 23:24:48 +03:00
## Usage
Use it in a task, as in the following examples:
2017-12-23 23:05:07 +03:00
```
# Install (using pacaur)
- aur: name=package_name
become: yes
become_user: user_that_has_nopasswd_in_sudoers_for_pacman_use
# Install (using trizen)
- aur:
helper: trizen
name:
- package_name_1
- package_name_2
[...]
# Upgrade (using pacaur)
- aur: upgrade=yes
[...]
```