ansible-aur icon indicating copy to clipboard operation
ansible-aur copied to clipboard

Ansible module to manage packages from the AUR

Results 10 ansible-aur issues
Sort by recently updated
recently updated
newest added

This is adding `aura` as a helper option. However, this helper is a bit different. It works in reverse, meaning that it must be run as root and it drops...

When using ansible-lint it would complain about "risky-file-permissions: File permissions unset or incorrect". Making the `mode` explicit avoids the problem

Hi, thanks for making this collection! Pull-request #36 added diff support when running with `--diff --check`. This pull-request extends `--diff` support to work even when running without `--check`. This partially...

Is it possible to use this module as a backend for the [`package`](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/package_module.html) core ansible module? >This modules manages packages on a target without specifying a package manager module (like...

The module already supports paru, but limits `local_pkgbuild` support to `pikaur` and `makepkg`. Paru introduced support for building and installing local PKGBUILDs earlier this year. https://github.com/Morganamilo/paru/issues/222

Hi, is it possible to support [aurutils](https://github.com/AladW/aurutils/)? It's my favorite aur helper. Thanks!

Hi When you specify an empty list to `name`, then a error is raised. E.g.: ``` yaml --- - name: "install aur packages" hosts: "localhost" connection: "local" become: True vars:...

As in the title, currently `--diff` doesn't have any efect.

[Line 109](https://github.com/kewlfft/ansible-aur/blob/master/plugins/modules/aur.py#L109) hardcodes the environment variable locales to `C`: def_lang = ['env', 'LC_ALL=C', 'LANGUAGE=C'] but this conflicts with certain PKGBUILDs. For example when extracting source files of the `sabnzbd` package...

I have this task: ```yaml - name: Install handlr and xdg-utils shim become: true become_user: ansible kewlfft.aur.aur: state: present name: - handlr - xdg-utils-handlr # TODO: How to automatically confirm...