ansible-aur/README.md

57 lines
2.1 KiB
Markdown
Raw Normal View History

2017-12-23 23:30:20 +03:00
# Ansible AUR package manager
2017-12-24 10:53:15 +03:00
Ansible module to use some AUR helpers. The following helpers are supported and automatically selected according to the below order:
2017-12-24 10:26:57 +03:00
- [pacaur](https://github.com/rmarquis/pacaur)
2017-12-23 23:46:43 +03:00
- [trizen](https://github.com/trizen/trizen)
- [yaourt](https://github.com/archlinuxfr/yaourt)
- [yay](https://github.com/Jguer/yay)
2017-12-23 20:27:42 +03:00
## Options
2017-12-24 10:21:11 +03:00
|parameter|required |default |choices |comments|
|--- |--- |--- |--- |---|
|name |no | | |Name or list of names of the package(s) to install or upgrade.|
|upgrade |no |no |yes, no |Whether or not to upgrade whole system.|
2017-12-24 10:41:17 +03:00
|use |no |auto |auto, pacaur, trizen, yaourt, yay |The helper to use, 'auto' uses the first known helper found.|
2017-12-23 20:27:42 +03:00
2017-12-23 23:51:30 +03:00
### Note
Either *name* or *upgrade* is required, both can not be used together.
2017-12-23 23:24:48 +03:00
## Installing
2017-12-24 10:32:51 +03:00
1. Clone the *ansibe-aur* repository in your playbook custom-module directory:
```
mkdir --parents library
2017-12-24 11:11:02 +03:00
cd library
git clone git@github.com:kewlfft/ansible-aur.git
2017-12-24 10:32:51 +03:00
```
2017-12-23 20:27:42 +03:00
2017-12-24 10:32:51 +03:00
2. Link the script to `library/aur`:
2017-12-24 10:37:56 +03:00
```
2017-12-24 11:11:02 +03:00
ln --symbolic ansible-aur/aur.py aur
2017-12-24 10:37:56 +03:00
```
2017-12-23 20:27:42 +03:00
2017-12-23 23:24:48 +03:00
## Usage
2017-12-23 23:54:19 +03:00
### Warning
2017-12-31 16:17:57 +03:00
* It is recommended to use the official *pacman* module for removal or for system upgrade 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 does not support it and systematically reinstalls.
2017-12-23 23:54:19 +03:00
### Examples
2017-12-23 23:24:48 +03:00
Use it in a task, as in the following examples:
2017-12-24 10:37:56 +03:00
```
2017-12-31 16:17:57 +03:00
# Install - using the first known helper found
2017-12-24 10:37:56 +03:00
- aur: name=package_name
become: yes
become_user: user_that_has_nopasswd_in_sudoers_for_pacman_use
2017-12-31 16:17:57 +03:00
# Install - using trizen
2017-12-24 10:37:56 +03:00
- aur:
use: trizen
name:
- package_name_1
- package_name_2
[...]
2017-12-31 16:17:57 +03:00
# Upgrade - using pacaur
2017-12-24 10:41:17 +03:00
- aur: upgrade=yes use=pacaur
2017-12-24 10:37:56 +03:00
[...]
```