1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #729 from marktheunissen/fix-apt

Fixes for apt module
This commit is contained in:
Michael DeHaan 2012-07-30 15:37:16 -07:00
commit 61780e0980

View file

@ -138,13 +138,13 @@ def main():
# reopen cache w/ modified config
cache.open(progress=None)
if modules.boolean(p['update_cache'])
if module.boolean(p['update_cache']):
cache.update()
cache.open(progress=None)
if p['package'] == None:
module.exit_json(changed=False)
force_yes = modules.boolean(p['force'])
force_yes = module.boolean(p['force'])
if p['package'].count('=') > 1:
module.fail_json(msg='invalid package spec')
@ -161,7 +161,7 @@ def main():
install(module, p['package'], cache, default_release=p['default_release'],
install_recommends=install_recommends,force=force_yes)
elif p['state'] == 'removed':
remove(module, p['package'], cache, purge = modules.boolean(p['purge']))
remove(module, p['package'], cache, purge = module.boolean(p['purge']))
# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>