mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve pacman module
- detect and use pacman_path via get_bin_path helper - simplify pending upgrade detection - apply outstanding changes from #358, #41
This commit is contained in:
parent
873c478853
commit
fb268d58d9
1 changed files with 36 additions and 38 deletions
|
@ -110,8 +110,6 @@ import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
PACMAN_PATH = "/usr/bin/pacman"
|
|
||||||
|
|
||||||
def get_version(pacman_output):
|
def get_version(pacman_output):
|
||||||
"""Take pacman -Qi or pacman -Si output and get the Version"""
|
"""Take pacman -Qi or pacman -Si output and get the Version"""
|
||||||
lines = pacman_output.split('\n')
|
lines = pacman_output.split('\n')
|
||||||
|
@ -120,10 +118,10 @@ def get_version(pacman_output):
|
||||||
return line.split(':')[1].strip()
|
return line.split(':')[1].strip()
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def query_package(module, name, state="present"):
|
def query_package(module, pacman_path, name, state="present"):
|
||||||
"""Query the package status in both the local system and the repository. Returns a boolean to indicate if the package is installed, and a second boolean to indicate if the package is up-to-date."""
|
"""Query the package status in both the local system and the repository. Returns a boolean to indicate if the package is installed, and a second boolean to indicate if the package is up-to-date."""
|
||||||
if state == "present":
|
if state == "present":
|
||||||
lcmd = "pacman -Qi %s" % (name)
|
lcmd = "%s -Qi %s" % (pacman_path, name)
|
||||||
lrc, lstdout, lstderr = module.run_command(lcmd, check_rc=False)
|
lrc, lstdout, lstderr = module.run_command(lcmd, check_rc=False)
|
||||||
if lrc != 0:
|
if lrc != 0:
|
||||||
# package is not installed locally
|
# package is not installed locally
|
||||||
|
@ -132,7 +130,7 @@ def query_package(module, name, state="present"):
|
||||||
# get the version installed locally (if any)
|
# get the version installed locally (if any)
|
||||||
lversion = get_version(lstdout)
|
lversion = get_version(lstdout)
|
||||||
|
|
||||||
rcmd = "pacman -Si %s" % (name)
|
rcmd = "%s -Si %s" % (pacman_path, name)
|
||||||
rrc, rstdout, rstderr = module.run_command(rcmd, check_rc=False)
|
rrc, rstdout, rstderr = module.run_command(rcmd, check_rc=False)
|
||||||
# get the version in the repository
|
# get the version in the repository
|
||||||
rversion = get_version(rstdout)
|
rversion = get_version(rstdout)
|
||||||
|
@ -145,8 +143,8 @@ def query_package(module, name, state="present"):
|
||||||
return False, False
|
return False, False
|
||||||
|
|
||||||
|
|
||||||
def update_package_db(module):
|
def update_package_db(module, pacman_path):
|
||||||
cmd = "pacman -Sy"
|
cmd = "%s -Sy" % (pacman_path)
|
||||||
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
|
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
|
||||||
|
|
||||||
if rc == 0:
|
if rc == 0:
|
||||||
|
@ -154,13 +152,12 @@ def update_package_db(module):
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg="could not update package db")
|
module.fail_json(msg="could not update package db")
|
||||||
|
|
||||||
def upgrade(module):
|
def upgrade(module, pacman_path):
|
||||||
cmdupgrade = "pacman -Suq --noconfirm"
|
cmdupgrade = "%s -Suq --noconfirm" % (pacman_path)
|
||||||
cmdneedrefresh = "pacman -Supq"
|
cmdneedrefresh = "%s -Qqu" % (pacman_path)
|
||||||
rc, stdout, stderr = module.run_command(cmdneedrefresh, check_rc=False)
|
rc, stdout, stderr = module.run_command(cmdneedrefresh, check_rc=False)
|
||||||
|
|
||||||
if rc == 0:
|
if rc == 0:
|
||||||
if stdout.count('\n') > 1:
|
|
||||||
rc, stdout, stderr = module.run_command(cmdupgrade, check_rc=False)
|
rc, stdout, stderr = module.run_command(cmdupgrade, check_rc=False)
|
||||||
if rc == 0:
|
if rc == 0:
|
||||||
module.exit_json(changed=True, msg='System upgraded')
|
module.exit_json(changed=True, msg='System upgraded')
|
||||||
|
@ -168,16 +165,14 @@ def upgrade(module):
|
||||||
module.fail_json(msg="could not upgrade")
|
module.fail_json(msg="could not upgrade")
|
||||||
else:
|
else:
|
||||||
module.exit_json(changed=False, msg='Nothing to upgrade')
|
module.exit_json(changed=False, msg='Nothing to upgrade')
|
||||||
else:
|
|
||||||
module.fail_json(msg="could not list upgrades")
|
|
||||||
|
|
||||||
def remove_packages(module, packages):
|
def remove_packages(module, pacman_path, packages):
|
||||||
if module.params["recurse"]:
|
if module.params["recurse"]:
|
||||||
args = "Rs"
|
args = "Rs"
|
||||||
else:
|
else:
|
||||||
args = "R"
|
args = "R"
|
||||||
|
|
||||||
def remove_packages(module, packages):
|
def remove_packages(module, pacman_path, packages):
|
||||||
if module.params["force"]:
|
if module.params["force"]:
|
||||||
args = "Rdd"
|
args = "Rdd"
|
||||||
else:
|
else:
|
||||||
|
@ -187,11 +182,11 @@ def remove_packages(module, packages):
|
||||||
# Using a for loop incase of error, we can report the package that failed
|
# Using a for loop incase of error, we can report the package that failed
|
||||||
for package in packages:
|
for package in packages:
|
||||||
# Query the package first, to see if we even need to remove
|
# Query the package first, to see if we even need to remove
|
||||||
installed, updated = query_package(module, package)
|
installed, updated = query_package(module, pacman_path, package)
|
||||||
if not installed:
|
if not installed:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
cmd = "pacman -%s %s --noconfirm" % (args, package)
|
cmd = "%s -%s %s --noconfirm" % (pacman_path, args, package)
|
||||||
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
|
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
|
||||||
|
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
|
@ -206,12 +201,12 @@ def remove_packages(module, packages):
|
||||||
module.exit_json(changed=False, msg="package(s) already absent")
|
module.exit_json(changed=False, msg="package(s) already absent")
|
||||||
|
|
||||||
|
|
||||||
def install_packages(module, state, packages, package_files):
|
def install_packages(module, pacman_path, state, packages, package_files):
|
||||||
install_c = 0
|
install_c = 0
|
||||||
|
|
||||||
for i, package in enumerate(packages):
|
for i, package in enumerate(packages):
|
||||||
# if the package is installed and state == present or state == latest and is up-to-date then skip
|
# if the package is installed and state == present or state == latest and is up-to-date then skip
|
||||||
installed, updated = query_package(module, package)
|
installed, updated = query_package(module, pacman_path, package)
|
||||||
if installed and (state == 'present' or (state == 'latest' and updated)):
|
if installed and (state == 'present' or (state == 'latest' and updated)):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
@ -220,7 +215,7 @@ def install_packages(module, state, packages, package_files):
|
||||||
else:
|
else:
|
||||||
params = '-S %s' % package
|
params = '-S %s' % package
|
||||||
|
|
||||||
cmd = "pacman %s --noconfirm" % (params)
|
cmd = "%s %s --noconfirm" % (pacman_path, params)
|
||||||
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
|
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
|
||||||
|
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
|
@ -234,10 +229,10 @@ def install_packages(module, state, packages, package_files):
|
||||||
module.exit_json(changed=False, msg="package(s) already installed")
|
module.exit_json(changed=False, msg="package(s) already installed")
|
||||||
|
|
||||||
|
|
||||||
def check_packages(module, packages, state):
|
def check_packages(module, pacman_path, packages, state):
|
||||||
would_be_changed = []
|
would_be_changed = []
|
||||||
for package in packages:
|
for package in packages:
|
||||||
installed, updated = query_package(module, package)
|
installed, updated = query_package(module, pacman_path, package)
|
||||||
if ((state in ["present", "latest"] and not installed) or
|
if ((state in ["present", "latest"] and not installed) or
|
||||||
(state == "absent" and installed) or
|
(state == "absent" and installed) or
|
||||||
(state == "latest" and not updated)):
|
(state == "latest" and not updated)):
|
||||||
|
@ -263,8 +258,10 @@ def main():
|
||||||
required_one_of = [['name', 'update_cache', 'upgrade']],
|
required_one_of = [['name', 'update_cache', 'upgrade']],
|
||||||
supports_check_mode = True)
|
supports_check_mode = True)
|
||||||
|
|
||||||
if not os.path.exists(PACMAN_PATH):
|
pacman_path = module.get_bin_path('pacman', True)
|
||||||
module.fail_json(msg="cannot find pacman, looking for %s" % (PACMAN_PATH))
|
|
||||||
|
if not os.path.exists(pacman_path):
|
||||||
|
module.fail_json(msg="cannot find pacman, in path %s" % (pacman_path))
|
||||||
|
|
||||||
p = module.params
|
p = module.params
|
||||||
|
|
||||||
|
@ -275,7 +272,7 @@ def main():
|
||||||
p['state'] = 'absent'
|
p['state'] = 'absent'
|
||||||
|
|
||||||
if p["update_cache"] and not module.check_mode:
|
if p["update_cache"] and not module.check_mode:
|
||||||
update_package_db(module)
|
update_package_db(module, pacman_path)
|
||||||
if not p['name']:
|
if not p['name']:
|
||||||
module.exit_json(changed=True, msg='updated the package master lists')
|
module.exit_json(changed=True, msg='updated the package master lists')
|
||||||
|
|
||||||
|
@ -283,7 +280,7 @@ def main():
|
||||||
module.exit_json(changed=True, msg='Would have updated the package cache')
|
module.exit_json(changed=True, msg='Would have updated the package cache')
|
||||||
|
|
||||||
if p['upgrade']:
|
if p['upgrade']:
|
||||||
upgrade(module)
|
upgrade(module, pacman_path)
|
||||||
|
|
||||||
if p['name']:
|
if p['name']:
|
||||||
pkgs = p['name'].split(',')
|
pkgs = p['name'].split(',')
|
||||||
|
@ -299,14 +296,15 @@ def main():
|
||||||
pkg_files.append(None)
|
pkg_files.append(None)
|
||||||
|
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
check_packages(module, pkgs, p['state'])
|
check_packages(module, pacman_path, pkgs, p['state'])
|
||||||
|
|
||||||
if p['state'] in ['present', 'latest']:
|
if p['state'] in ['present', 'latest']:
|
||||||
install_packages(module, p['state'], pkgs, pkg_files)
|
install_packages(module, pacman_path, p['state'], pkgs, pkg_files)
|
||||||
elif p['state'] == 'absent':
|
elif p['state'] == 'absent':
|
||||||
remove_packages(module, pkgs)
|
remove_packages(module, pacman_path, pkgs)
|
||||||
|
|
||||||
# import module snippets
|
# import module snippets
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue