Allow multiple packages to be installed at the same time
This commit is contained in:
parent
a5d604e151
commit
95dc4ec5ec
1 changed files with 26 additions and 14 deletions
|
@ -57,6 +57,9 @@ EXAMPLES = '''
|
||||||
# Update repositories and install "foo" package
|
# Update repositories and install "foo" package
|
||||||
- apk: name=foo update_cache=yes
|
- apk: name=foo update_cache=yes
|
||||||
|
|
||||||
|
# Update repositories and install "foo" and "bar" packages
|
||||||
|
- apk: name=foo,bar update_cache=yes
|
||||||
|
|
||||||
# Remove "foo" package
|
# Remove "foo" package
|
||||||
- apk: name=foo state=absent
|
- apk: name=foo state=absent
|
||||||
|
|
||||||
|
@ -66,9 +69,15 @@ EXAMPLES = '''
|
||||||
# Install the package "foo"
|
# Install the package "foo"
|
||||||
- apk: name=foo state=present
|
- apk: name=foo state=present
|
||||||
|
|
||||||
|
# Install the packages "foo" and "bar"
|
||||||
|
- apk: name=foo,bar state=present
|
||||||
|
|
||||||
# Update repositories and update package "foo" to latest version
|
# Update repositories and update package "foo" to latest version
|
||||||
- apk: name=foo state=latest update_cache=yes
|
- apk: name=foo state=latest update_cache=yes
|
||||||
|
|
||||||
|
# Update repositories and update packages "foo" and "bar" to latest versions
|
||||||
|
- apk: name=foo,bar state=latest update_cache=yes
|
||||||
|
|
||||||
# Update all installed packages to the latest versions
|
# Update all installed packages to the latest versions
|
||||||
- apk: upgrade=yes
|
- apk: upgrade=yes
|
||||||
|
|
||||||
|
@ -118,28 +127,31 @@ def upgrade_packages(module):
|
||||||
module.exit_json(changed=False, msg="packages already upgraded")
|
module.exit_json(changed=False, msg="packages already upgraded")
|
||||||
module.exit_json(changed=True, msg="upgraded packages")
|
module.exit_json(changed=True, msg="upgraded packages")
|
||||||
|
|
||||||
def install_package(module, name, state):
|
def install_packages(module, names, state):
|
||||||
upgrade = False
|
upgrade = False
|
||||||
installed = query_package(module, name)
|
uninstalled = []
|
||||||
latest = query_latest(module, name)
|
for name in names:
|
||||||
if state == 'latest' and not latest:
|
if not query_package(module, name):
|
||||||
|
uninstalled.append(name)
|
||||||
|
elif state == 'latest' and not query_latest(module, name):
|
||||||
upgrade = True
|
upgrade = True
|
||||||
if installed and not upgrade:
|
if not uninstalled and not upgrade:
|
||||||
module.exit_json(changed=False, msg="package already installed")
|
module.exit_json(changed=False, msg="package(s) already installed")
|
||||||
|
names = " ".join(uninstalled)
|
||||||
if upgrade:
|
if upgrade:
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
cmd = "apk add --upgrade --simulate %s" % (name)
|
cmd = "apk add --upgrade --simulate %s" % (names)
|
||||||
else:
|
else:
|
||||||
cmd = "apk add --upgrade %s" % (name)
|
cmd = "apk add --upgrade %s" % (names)
|
||||||
else:
|
else:
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
cmd = "apk add --simulate %s" % (name)
|
cmd = "apk add --simulate %s" % (names)
|
||||||
else:
|
else:
|
||||||
cmd = "apk add %s" % (name)
|
cmd = "apk add %s" % (names)
|
||||||
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:
|
||||||
module.fail_json(msg="failed to install %s" % (name))
|
module.fail_json(msg="failed to install %s" % (names))
|
||||||
module.exit_json(changed=True, msg="installed %s package" % (name))
|
module.exit_json(changed=True, msg="installed %s package(s)" % (names))
|
||||||
|
|
||||||
def remove_packages(module, names):
|
def remove_packages(module, names):
|
||||||
installed = []
|
installed = []
|
||||||
|
@ -197,7 +209,7 @@ def main():
|
||||||
names = filter((lambda x: x != ''), p['name'].split(','))
|
names = filter((lambda x: x != ''), p['name'].split(','))
|
||||||
|
|
||||||
if p['state'] in ['present', 'latest']:
|
if p['state'] in ['present', 'latest']:
|
||||||
install_package(module, p['name'], p['state'])
|
install_packages(module, names, p['state'])
|
||||||
elif p['state'] == 'absent':
|
elif p['state'] == 'absent':
|
||||||
remove_packages(module, names)
|
remove_packages(module, names)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue