mirror of https://github.com/kewlfft/ansible-aur
internal helper added
parent
a34324db3b
commit
77701812e8
10
README.md
10
README.md
|
@ -6,11 +6,12 @@ Ansible module to use some AUR helpers. The following helpers are supported and
|
||||||
- [yay](https://github.com/Jguer/yay)
|
- [yay](https://github.com/Jguer/yay)
|
||||||
|
|
||||||
## Options
|
## Options
|
||||||
|parameter|required |default |choices |comments|
|
|parameter |required |default |choices |comments|
|
||||||
|--- |--- |--- |--- |---|
|
|--- |--- |--- |--- |---|
|
||||||
|name |no | | |Name or list of names of the package(s) to install or upgrade.|
|
|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.|
|
|upgrade |no |no |yes, no |Whether or not to upgrade whole system.|
|
||||||
|use |no |auto |auto, pacaur, trizen, yaourt, yay |The helper to use, 'auto' uses the first known helper found.|
|
|use |no |auto |auto, pacaur, trizen, yaourt, yay, internal |The helper to use, 'auto' uses the first known helper found, 'internal' uses the internal helper.|
|
||||||
|
|skip_installed |no |no |yes, no |Skip operations if the package is present.|
|
||||||
|
|
||||||
### Note
|
### Note
|
||||||
Either *name* or *upgrade* is required, both can not be used together.
|
Either *name* or *upgrade* is required, both can not be used together.
|
||||||
|
@ -37,6 +38,11 @@ ln --symbolic ansible-aur/aur.py aur
|
||||||
### Examples
|
### Examples
|
||||||
Use it in a task, as in the following examples:
|
Use it in a task, as in the following examples:
|
||||||
```
|
```
|
||||||
|
# Install trizen using the internal helper, skip if trizen is already installed
|
||||||
|
- aur: name=trizen use=internal skip_installed=true
|
||||||
|
become: yes
|
||||||
|
become_user: user_that_has_nopasswd_in_sudoers_for_pacman_use
|
||||||
|
|
||||||
# Install - using the first known helper found
|
# Install - using the first known helper found
|
||||||
- aur: name=package_name
|
- aur: name=package_name
|
||||||
become: yes
|
become: yes
|
||||||
|
|
88
aur.py
88
aur.py
|
@ -1,22 +1,53 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
import json
|
||||||
|
import urllib.request
|
||||||
|
import tarfile
|
||||||
|
import os
|
||||||
|
import os.path
|
||||||
|
import tempfile
|
||||||
|
|
||||||
|
use_cmd = {
|
||||||
helper_cmd = {
|
|
||||||
'pacaur': ['env', 'LC_ALL=C', 'pacaur', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
|
'pacaur': ['env', 'LC_ALL=C', 'pacaur', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
|
||||||
'trizen': ['env', 'LC_ALL=C', 'trizen', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
|
'trizen': ['env', 'LC_ALL=C', 'trizen', '-S', '--noconfirm', '--noedit', '--needed', '--aur'],
|
||||||
'yaourt': ['env', 'LC_ALL=C', 'yaourt', '-S', '--noconfirm', '--needed'],
|
'yaourt': ['env', 'LC_ALL=C', 'yaourt', '-S', '--noconfirm', '--needed'],
|
||||||
'yay': ['env', 'LC_ALL=C', 'yay', '-S', '--noconfirm'],
|
'yay': ['env', 'LC_ALL=C', 'yay', '-S', '--noconfirm'],
|
||||||
|
'internal': ['env', 'LC_ALL=C', 'makepkg', '--syncdeps', '--install', '--noconfirm', '--needed']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def package_installed(module, package):
|
||||||
|
rc, _, _ = module.run_command(['pacman', '-Q', package], check_rc=False)
|
||||||
|
return rc == 0
|
||||||
|
|
||||||
|
|
||||||
|
def install_internal(module, package):
|
||||||
|
f = urllib.request.urlopen('https://aur.archlinux.org/rpc/?v=5&type=info&arg={}'.format(package))
|
||||||
|
result = json.loads(f.read().decode('utf8'))
|
||||||
|
if result['resultcount'] != 1:
|
||||||
|
return (1, '', 'package not found')
|
||||||
|
result = result['results'][0]
|
||||||
|
f = urllib.request.urlopen('https://aur.archlinux.org/{}'.format(result['URLPath']))
|
||||||
|
current_path = os.getcwd()
|
||||||
|
with tempfile.TemporaryDirectory() as tmpdir:
|
||||||
|
os.chdir(tmpdir)
|
||||||
|
tar_file = '{}.tar.gz'.format(result['Name'])
|
||||||
|
with open(tar_file, 'wb') as out:
|
||||||
|
out.write(f.read())
|
||||||
|
tar = tarfile.open(tar_file)
|
||||||
|
tar.extractall()
|
||||||
|
tar.close()
|
||||||
|
os.chdir(format(result['Name']))
|
||||||
|
rc, out, err = module.run_command(use_cmd['internal'], check_rc=True)
|
||||||
|
os.chdir(current_path)
|
||||||
|
return (rc, out, err)
|
||||||
|
|
||||||
|
|
||||||
def upgrade(module, use):
|
def upgrade(module, use):
|
||||||
assert use in helper_cmd
|
assert use in use_cmd
|
||||||
|
|
||||||
cmd = helper_cmd[use] + ['-u']
|
rc, out, err = module.run_command(use_cmd[use] + ['-u'], check_rc=True)
|
||||||
|
|
||||||
rc, out, err = module.run_command(cmd, check_rc=True)
|
|
||||||
|
|
||||||
module.exit_json(
|
module.exit_json(
|
||||||
changed=not (out == '' or 'there is nothing to do' in out or 'No AUR updates found' in out),
|
changed=not (out == '' or 'there is nothing to do' in out or 'No AUR updates found' in out),
|
||||||
|
@ -25,20 +56,27 @@ def upgrade(module, use):
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def install_packages(module, packages, use):
|
def install_packages(module, packages, use, skip_installed):
|
||||||
assert use in helper_cmd
|
assert use in use_cmd
|
||||||
|
|
||||||
changed_iter = False
|
changed_iter = False
|
||||||
for package in packages:
|
|
||||||
cmd = helper_cmd[use] + [package]
|
|
||||||
|
|
||||||
rc, out, err = module.run_command(cmd, check_rc=True)
|
for package in packages:
|
||||||
changed_iter = changed_iter or not (out == '' or '-- skipping' in out)
|
if skip_installed:
|
||||||
|
if package_installed(module, package):
|
||||||
|
rc = 0
|
||||||
|
continue
|
||||||
|
if use == 'internal':
|
||||||
|
rc, out, err = install_internal(module, package)
|
||||||
|
else:
|
||||||
|
rc, out, err = module.run_command(use_cmd[use] + [package], check_rc=True)
|
||||||
|
changed_iter = changed_iter or not (out == '' or '-- skipping' in out or 'there is nothing to do' in out)
|
||||||
|
|
||||||
module.exit_json(
|
module.exit_json(
|
||||||
changed=changed_iter,
|
changed=changed_iter,
|
||||||
msg='installed package',
|
msg='installed package' if not rc else err,
|
||||||
helper_used=use,
|
helper_used=use,
|
||||||
|
rc=rc,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,7 +92,11 @@ def main():
|
||||||
},
|
},
|
||||||
'use': {
|
'use': {
|
||||||
'default': 'auto',
|
'default': 'auto',
|
||||||
'choices': ['auto', 'pacaur', 'trizen', 'yaourt', 'yay'],
|
'choices': ['auto', 'pacaur', 'trizen', 'yaourt', 'yay', 'internal'],
|
||||||
|
},
|
||||||
|
'skip_installed': {
|
||||||
|
'default': 'no',
|
||||||
|
'type': 'bool',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
required_one_of=[['name', 'upgrade']],
|
required_one_of=[['name', 'upgrade']],
|
||||||
|
@ -63,19 +105,21 @@ def main():
|
||||||
params = module.params
|
params = module.params
|
||||||
|
|
||||||
if params['use'] == 'auto':
|
if params['use'] == 'auto':
|
||||||
for k in helper_cmd:
|
use = internal
|
||||||
|
for k in use_cmd:
|
||||||
if module.get_bin_path(k, False):
|
if module.get_bin_path(k, False):
|
||||||
helper = k
|
use = k
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
helper = params['use']
|
use = params['use']
|
||||||
|
|
||||||
if params['upgrade'] and params['name']:
|
if params['upgrade'] and (params['name'] or params['skip_installed'] or use == 'internal'):
|
||||||
module.fail_json(msg="Upgrade and install must be requested separately")
|
module.fail_json(msg="Upgrade cannot be used with this option.")
|
||||||
if params['upgrade']:
|
|
||||||
upgrade(module, helper)
|
|
||||||
else:
|
else:
|
||||||
install_packages(module, params['name'], helper)
|
if params['upgrade']:
|
||||||
|
upgrade(module, use)
|
||||||
|
else:
|
||||||
|
install_packages(module, params['name'], use, params['skip_installed'])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in New Issue