mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 18:50:21 -07:00
fix trace-creating error in apt module - also make the default setting actualy work
This commit is contained in:
parent
d55012e570
commit
c4c53d545a
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ def main():
|
||||||
install(module, p['package'], cache, default_release=p['default_release'],
|
install(module, p['package'], cache, default_release=p['default_release'],
|
||||||
install_recommends=install_recommends,force=force_yes)
|
install_recommends=install_recommends,force=force_yes)
|
||||||
elif p['state'] == 'removed':
|
elif p['state'] == 'removed':
|
||||||
remove(module, p['package'], cache, purge == 'yes')
|
remove(module, p['package'], cache, purge = p['purge'])
|
||||||
|
|
||||||
# this is magic, see lib/ansible/module_common.py
|
# this is magic, see lib/ansible/module_common.py
|
||||||
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue