2018-04-12 23:15:44 +03:00
# Ansible AUR helper
2018-05-16 22:06:06 +03:00
Ansible module to use some Arch User Repository (AUR) helpers as well as makepkg.
2019-07-28 10:30:00 +03:00
The following helpers are supported and automatically selected, if present, in the order listed below:
2018-07-07 00:15:26 +03:00
- [yay ](https://github.com/Jguer/yay )
2020-04-13 03:00:50 +03:00
- [pacaur ](https://github.com/E5ten/pacaur )
2017-12-23 23:46:43 +03:00
- [trizen ](https://github.com/trizen/trizen )
2018-03-17 11:15:06 +03:00
- [pikaur ](https://github.com/actionless/pikaur )
2020-04-13 03:00:50 +03:00
- [aurman ](https://github.com/polygamma/aurman ) (discontinued)
2018-05-16 22:06:06 +03:00
2019-07-28 10:30:00 +03:00
*makepkg* will be used if no helper was found or if it is explicitly specified:
2018-05-16 22:06:06 +03:00
- [makepkg ](https://wiki.archlinux.org/index.php/makepkg )
2017-12-23 20:27:42 +03:00
## Options
2018-05-23 21:55:18 +03:00
|parameter |required |default |choices |comments|
|--- |--- |--- |--- |---|
|name |no | | |Name or list of names of the package(s) to install or upgrade.|
2020-05-24 05:34:42 +03:00
|state |no |present |present, latest |Desired state of the package, 'present' skips operations if the package is installed.|
2018-05-23 21:55:18 +03:00
|upgrade |no |no |yes, no |Whether or not to upgrade whole system.|
2020-04-13 03:00:50 +03:00
|use |no |auto |auto, yay, pacaur, trizen, pikaur, aurman, makepkg |The helper to use, 'auto' uses the first known helper found and makepkg as a fallback.|
|aur_only |no |no |yes, no |Limit operation to the AUR. Compatible with yay, pacaur, aurman and trizen.|
2020-04-13 02:45:52 +03:00
|skip_pgp_check |no |no |yes, no |Only valid with makepkg. Skip PGP signatures verification of source file, useful when installing packages without GnuPG properly configured.|
|ignore_arch |no |no |yes, no |Only valid with makepkg. Ignore a missing or incomplete arch field, useful when the PKGBUILD does not have the arch=('yourarch') field.|
2017-12-23 20:27:42 +03:00
2017-12-23 23:51:30 +03:00
### Note
2017-12-31 20:15:35 +03:00
* Either *name* or *upgrade* is required, both cannot be used together.
2018-05-16 22:06:06 +03:00
* In the *use* =*auto* mode, makepkg is used as a fallback if no known helper is found.
2017-12-23 23:51:30 +03:00
2017-12-23 23:24:48 +03:00
## Installing
2018-06-16 11:30:17 +03:00
### AUR package
2018-12-21 11:33:16 +03:00
The [ansible-aur-git ](https://aur.archlinux.org/packages/ansible-aur-git ) package is available in the AUR.
2018-05-23 23:28:55 +03:00
Note the module is installed in `/usr/share/ansible/plugins/modules` which is one of the default module library paths.
2018-05-23 23:19:21 +03:00
2018-05-24 00:57:33 +03:00
### Manual installation
2018-05-24 20:53:32 +03:00
Just clone the *ansible-aur* repository into your user custom-module directory:
2017-12-24 10:32:51 +03:00
```
2018-05-24 20:53:32 +03:00
git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur
2017-12-24 10:37:56 +03:00
```
2017-12-23 20:27:42 +03:00
2020-03-02 08:43:56 +03:00
### Ansible Galaxy
2020-03-03 15:26:29 +03:00
*ansible-aur* is available in Galaxy which is a hub for sharing Ansible content. To download it, use:
2020-03-02 08:43:56 +03:00
```
ansible-galaxy install kewlfft.aur
```
Note that if this module is installed from Ansible Galaxy, you will need to list it explicitly in your playbook:
```
# playbook.yml
- hosts: localhost
roles:
- kewlfft.aur
tasks:
- aur: name=package_name
```
or in your role:
```
# meta/main.yml
dependencies:
- kewlfft.aur
```
```
# tasks/main.yml
- aur: name=package_name
```
2017-12-23 23:24:48 +03:00
## Usage
2019-07-28 10:30:00 +03:00
### Notes
2020-03-03 15:26:29 +03:00
* The scope of this module is installation and update from the AUR; for package removal or system upgrade from the official repositories, it is recommended to use the official *pacman* module.
2019-07-28 10:30:00 +03:00
* The *--needed* parameter of the helper is systematically used, it means if a package is up to date, it is not built and reinstalled.
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
```
2018-05-16 22:06:06 +03:00
# Install trizen using makepkg, skip if trizen is already installed
2020-05-24 05:28:10 +03:00
- aur: name=trizen use=makepkg state=present
2017-12-31 20:12:28 +03:00
become: yes
2017-12-31 23:05:06 +03:00
become_user: aur_builder
2017-12-31 20:12:28 +03:00
2017-12-31 20:19:06 +03:00
# Install package_name using the first known helper found
2017-12-24 10:37:56 +03:00
- aur: name=package_name
2018-05-08 09:24:42 +03:00
...
2017-12-24 10:37:56 +03:00
2017-12-31 20:19:06 +03:00
# Install package_name_1 and package_name_2 using trizen
2017-12-24 10:37:56 +03:00
- aur:
use: trizen
name:
- package_name_1
2018-03-17 11:15:06 +03:00
- package_name_2
2018-05-08 09:24:42 +03:00
...
2017-12-24 10:37:56 +03:00
2017-12-31 16:17:57 +03:00
# Upgrade - using pacaur
2017-12-24 10:41:17 +03:00
- aur: upgrade=yes use=pacaur
2018-05-08 09:24:42 +03:00
...
2017-12-24 10:37:56 +03:00
```
2017-12-31 23:05:06 +03:00
2018-01-02 02:43:36 +03:00
### Create the "aur_builder" user
2019-07-28 10:30:00 +03:00
While Ansible expects to SSH as root, AUR helpers do not allow executing operations as root, they all fail with "you cannot perform this operation as root". It is therefore recommended to create a user, let's call it *aur_builder* , that has no need for password with pacman in sudoers.
2017-12-31 23:39:58 +03:00
This can be done in Ansible with the following actions:
2017-12-31 23:05:06 +03:00
```
2018-03-17 11:15:06 +03:00
- user:
2018-02-22 00:26:37 +03:00
name: aur_builder
group: wheel
- lineinfile:
path: /etc/sudoers.d/11-install-aur_builder
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'
create: yes
validate: 'visudo -cf %s'
2018-05-16 22:31:32 +03:00
```