Merge pull request #882 from isotopp/devel
add force= option to allow force installation/removal of packages
This commit is contained in:
commit
919b2e96e2
1 changed files with 20 additions and 2 deletions
|
@ -36,6 +36,12 @@ options:
|
||||||
choices: [ 'present', 'absent' ]
|
choices: [ 'present', 'absent' ]
|
||||||
required: false
|
required: false
|
||||||
default: present
|
default: present
|
||||||
|
force:
|
||||||
|
description:
|
||||||
|
- opkg --force parameter used
|
||||||
|
choices: ["", "depends", "maintainer", "reinstall", "overwrite", "downgrade", "space", "postinstall", "remove", "checksum", "removal-of-dependent-packages"]
|
||||||
|
required: false
|
||||||
|
default: absent
|
||||||
update_cache:
|
update_cache:
|
||||||
description:
|
description:
|
||||||
- update the package db first
|
- update the package db first
|
||||||
|
@ -49,6 +55,7 @@ EXAMPLES = '''
|
||||||
- opkg: name=foo state=present update_cache=yes
|
- opkg: name=foo state=present update_cache=yes
|
||||||
- opkg: name=foo state=absent
|
- opkg: name=foo state=absent
|
||||||
- opkg: name=foo,bar state=absent
|
- opkg: name=foo,bar state=absent
|
||||||
|
- opkg: name=foo state=present force=overwrite
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import pipes
|
import pipes
|
||||||
|
@ -77,6 +84,11 @@ def query_package(module, opkg_path, name, state="present"):
|
||||||
def remove_packages(module, opkg_path, packages):
|
def remove_packages(module, opkg_path, packages):
|
||||||
""" Uninstalls one or more packages if installed. """
|
""" Uninstalls one or more packages if installed. """
|
||||||
|
|
||||||
|
p = module.params
|
||||||
|
force = p["force"]
|
||||||
|
if force:
|
||||||
|
force = "--force-%s" % force
|
||||||
|
|
||||||
remove_c = 0
|
remove_c = 0
|
||||||
# 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:
|
||||||
|
@ -84,7 +96,7 @@ def remove_packages(module, opkg_path, packages):
|
||||||
if not query_package(module, opkg_path, package):
|
if not query_package(module, opkg_path, package):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
rc, out, err = module.run_command("%s remove %s" % (opkg_path, package))
|
rc, out, err = module.run_command("%s remove %s %s" % (opkg_path, force, package))
|
||||||
|
|
||||||
if query_package(module, opkg_path, package):
|
if query_package(module, opkg_path, package):
|
||||||
module.fail_json(msg="failed to remove %s: %s" % (package, out))
|
module.fail_json(msg="failed to remove %s: %s" % (package, out))
|
||||||
|
@ -101,13 +113,18 @@ def remove_packages(module, opkg_path, packages):
|
||||||
def install_packages(module, opkg_path, packages):
|
def install_packages(module, opkg_path, packages):
|
||||||
""" Installs one or more packages if not already installed. """
|
""" Installs one or more packages if not already installed. """
|
||||||
|
|
||||||
|
p = module.params
|
||||||
|
force = p["force"]
|
||||||
|
if force:
|
||||||
|
force = "--force-%s" % force
|
||||||
|
|
||||||
install_c = 0
|
install_c = 0
|
||||||
|
|
||||||
for package in packages:
|
for package in packages:
|
||||||
if query_package(module, opkg_path, package):
|
if query_package(module, opkg_path, package):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
rc, out, err = module.run_command("%s install %s" % (opkg_path, package))
|
rc, out, err = module.run_command("%s install %s %s" % (opkg_path, force, package))
|
||||||
|
|
||||||
if not query_package(module, opkg_path, package):
|
if not query_package(module, opkg_path, package):
|
||||||
module.fail_json(msg="failed to install %s: %s" % (package, out))
|
module.fail_json(msg="failed to install %s: %s" % (package, out))
|
||||||
|
@ -125,6 +142,7 @@ def main():
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
name = dict(aliases=["pkg"], required=True),
|
name = dict(aliases=["pkg"], required=True),
|
||||||
state = dict(default="present", choices=["present", "installed", "absent", "removed"]),
|
state = dict(default="present", choices=["present", "installed", "absent", "removed"]),
|
||||||
|
force = dict(default="", choices=["", "depends", "maintainer", "reinstall", "overwrite", "downgrade", "space", "postinstall", "remove", "checksum", "removal-of-dependent-packages"]),
|
||||||
update_cache = dict(default="no", aliases=["update-cache"], type='bool')
|
update_cache = dict(default="no", aliases=["update-cache"], type='bool')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue