mirror of
https://github.com/kewlfft/ansible-aur.git
synced 2025-09-17 08:30:39 +03:00
Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
583c7597a9 | ||
![]() |
cbf843e1db | ||
![]() |
2a076dc6a0 | ||
![]() |
8d177a7550 | ||
![]() |
b469b5a641 | ||
![]() |
63d3056a82 | ||
![]() |
91c6d70184 | ||
![]() |
9b25b11cea | ||
![]() |
2c090a49a8 | ||
![]() |
07e5fe301f | ||
![]() |
49a077790e | ||
![]() |
87a15853fa | ||
![]() |
7285f5aaaa | ||
![]() |
cda508cfc0 | ||
![]() |
c8bf68a91b | ||
![]() |
2319468c2e | ||
![]() |
f12cb1b36b | ||
![]() |
e8108fe3e4 | ||
![]() |
472a92ff8e | ||
![]() |
b3e47d6395 |
@@ -69,6 +69,7 @@ The following helpers are supported and automatically selected, if present, in t
|
||||
| name | | Name or list of names of the package(s) to install or upgrade. |
|
||||
| state | **present**, latest | Desired state of the package, 'present' skips operations if the package is already installed. |
|
||||
| upgrade | yes, **no** | Whether or not to upgrade whole system. |
|
||||
| update_cache | yes, **no** | Whether or not to refresh the packages cache |
|
||||
| use | **auto**, yay, paru, pacaur, trizen, pikaur, aurman, makepkg | The tool to use, 'auto' uses the first known helper found and makepkg as a fallback. |
|
||||
| extra_args | **null** | A list of additional arguments to pass directly to the tool. Cannot be used in 'auto' mode. |
|
||||
| aur_only | yes, **no** | Limit helper operation to the AUR. |
|
||||
@@ -96,16 +97,19 @@ This user can be created in an Ansible task with the following actions:
|
||||
|
||||
```yaml
|
||||
- name: Create the `aur_builder` user
|
||||
become: yes
|
||||
ansible.builtin.user:
|
||||
name: aur_builder
|
||||
create_home: yes
|
||||
group: wheel
|
||||
|
||||
- name: Allow the `aur_builder` user to run `sudo pacman` without a password
|
||||
become: yes
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/sudoers.d/11-install-aur_builder
|
||||
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'
|
||||
create: yes
|
||||
mode: 0644
|
||||
validate: 'visudo -cf %s'
|
||||
```
|
||||
|
||||
|
@@ -8,7 +8,7 @@ namespace: kewlfft
|
||||
name: aur
|
||||
|
||||
# The version of the collection. Must be compatible with semantic versioning
|
||||
version: 0.9.1
|
||||
version: 0.10.0
|
||||
|
||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||
readme: README.md
|
||||
@@ -65,5 +65,6 @@ issues: https://github.com/kewlfft/ansible-aur/issues
|
||||
# artifact. A pattern is matched from the relative path of the file or directory of the collection directory. This
|
||||
# uses 'fnmatch' to match the files or directories. Some directories and files like 'galaxy.yml', '*.pyc', '*.retry',
|
||||
# and '.git' are always filtered
|
||||
build_ignore: []
|
||||
|
||||
build_ignore:
|
||||
- .github
|
||||
- .gitignore
|
||||
|
@@ -39,6 +39,12 @@ options:
|
||||
default: no
|
||||
type: bool
|
||||
|
||||
update_cache:
|
||||
description:
|
||||
- Whether or not to update_cache the package cache.
|
||||
default: no
|
||||
type: bool
|
||||
|
||||
use:
|
||||
description:
|
||||
- The tool to use, 'auto' uses the first known helper found and makepkg as a fallback.
|
||||
@@ -132,18 +138,8 @@ def check_packages(module, packages):
|
||||
"""
|
||||
Inform the user what would change if the module were run
|
||||
"""
|
||||
would_be_changed = []
|
||||
diff = {
|
||||
'before': '',
|
||||
'after': '',
|
||||
}
|
||||
|
||||
for package in packages:
|
||||
installed = package_installed(module, package)
|
||||
if not installed:
|
||||
would_be_changed.append(package)
|
||||
if module._diff:
|
||||
diff['after'] += package + "\n"
|
||||
would_be_changed = [package for package in packages if not package_installed(module, package)]
|
||||
diff = {'before': '', 'after': '\n'.join(package for package in would_be_changed if module._diff)}
|
||||
|
||||
if would_be_changed:
|
||||
status = True
|
||||
@@ -160,7 +156,7 @@ def check_packages(module, packages):
|
||||
module.exit_json(changed=status, msg=message, diff=diff)
|
||||
|
||||
|
||||
def build_command_prefix(use, extra_args, skip_pgp_check=False, ignore_arch=False, aur_only=False, local_pkgbuild=None):
|
||||
def build_command_prefix(use, extra_args, skip_pgp_check=False, ignore_arch=False, aur_only=False, local_pkgbuild=None, update_cache=False):
|
||||
"""
|
||||
Create the prefix of a command that can be used by the install and upgrade functions.
|
||||
"""
|
||||
@@ -176,6 +172,8 @@ def build_command_prefix(use, extra_args, skip_pgp_check=False, ignore_arch=Fals
|
||||
command.append('--aur')
|
||||
if local_pkgbuild and use != 'makepkg':
|
||||
command.append(local_pkgbuild)
|
||||
if update_cache:
|
||||
command.append('-y')
|
||||
if extra_args:
|
||||
command += shlex.split(extra_args)
|
||||
return command
|
||||
@@ -223,22 +221,21 @@ def check_upgrade(module, use):
|
||||
Inform user how many packages would be upgraded
|
||||
"""
|
||||
rc, stdout, stderr = module.run_command([use, '-Qu'], check_rc=True)
|
||||
data = stdout.split('\n')
|
||||
data.remove('')
|
||||
num_packages = sum(1 for line in stdout.splitlines() if line.strip())
|
||||
module.exit_json(
|
||||
changed=len(data) > 0,
|
||||
msg="{} package(s) would be upgraded".format(len(data)),
|
||||
changed=num_packages > 0,
|
||||
msg=f"{num_packages} package(s) would be upgraded",
|
||||
helper=use,
|
||||
)
|
||||
|
||||
|
||||
def upgrade(module, use, extra_args, aur_only):
|
||||
def upgrade(module, use, extra_args, aur_only, update_cache):
|
||||
"""
|
||||
Upgrade the whole system
|
||||
"""
|
||||
assert use in use_cmd
|
||||
|
||||
command = build_command_prefix(use, extra_args, aur_only=aur_only)
|
||||
command = build_command_prefix(use, extra_args, aur_only=aur_only, update_cache=update_cache)
|
||||
command.append('-u')
|
||||
|
||||
rc, out, err = module.run_command(command, check_rc=True)
|
||||
@@ -250,7 +247,7 @@ def upgrade(module, use, extra_args, aur_only):
|
||||
)
|
||||
|
||||
|
||||
def install_packages(module, packages, use, extra_args, state, skip_pgp_check, ignore_arch, aur_only, local_pkgbuild):
|
||||
def install_packages(module, packages, use, extra_args, state, skip_pgp_check, ignore_arch, aur_only, local_pkgbuild, update_cache):
|
||||
"""
|
||||
Install the specified packages
|
||||
"""
|
||||
@@ -262,20 +259,19 @@ def install_packages(module, packages, use, extra_args, state, skip_pgp_check, i
|
||||
changed_iter = False
|
||||
|
||||
for package in packages:
|
||||
if state == 'present':
|
||||
if package_installed(module, package):
|
||||
rc = 0
|
||||
continue
|
||||
if state == 'present' and package_installed(module, package):
|
||||
rc = 0
|
||||
continue
|
||||
if use == 'makepkg':
|
||||
rc, out, err = install_with_makepkg(module, package, extra_args, skip_pgp_check, ignore_arch, local_pkgbuild)
|
||||
elif local_pkgbuild:
|
||||
rc, out, err = install_local_package(module, package, use, extra_args, local_pkgbuild)
|
||||
else:
|
||||
command = build_command_prefix(use, extra_args, aur_only=aur_only)
|
||||
command = build_command_prefix(use, extra_args, aur_only=aur_only, update_cache=update_cache)
|
||||
command.append(package)
|
||||
rc, out, err = module.run_command(command, check_rc=True)
|
||||
|
||||
changed_iter = changed_iter or not (out == '' or '-- skipping' in out or 'nothing to do' in out.lower())
|
||||
changed_iter |= not (out == '' or 'up-to-date -- skipping' in out or 'nothing to do' in out.lower())
|
||||
|
||||
message = 'installed package(s)' if changed_iter else 'package(s) already installed'
|
||||
|
||||
@@ -300,6 +296,10 @@ def make_module():
|
||||
'upgrade': {
|
||||
'type': 'bool',
|
||||
},
|
||||
'update_cache': {
|
||||
'default': False,
|
||||
'type': 'bool',
|
||||
},
|
||||
'use': {
|
||||
'default': 'auto',
|
||||
'choices': ['auto'] + list(use_cmd.keys()),
|
||||
@@ -372,7 +372,7 @@ def apply_module(module, use):
|
||||
if module.check_mode:
|
||||
check_upgrade(module, use)
|
||||
else:
|
||||
upgrade(module, use, params['extra_args'], params['aur_only'])
|
||||
upgrade(module, use, params['extra_args'], params['aur_only'], params['update_cache'])
|
||||
else:
|
||||
if module.check_mode:
|
||||
check_packages(module, params['name'])
|
||||
@@ -385,7 +385,8 @@ def apply_module(module, use):
|
||||
params['skip_pgp_check'],
|
||||
params['ignore_arch'],
|
||||
params['aur_only'],
|
||||
params['local_pkgbuild'])
|
||||
params['local_pkgbuild'],
|
||||
params['update_cache'])
|
||||
|
||||
|
||||
def main():
|
||||
|
Reference in New Issue
Block a user