now catches lock exceptoins on apt and returns friendly message instead of

traceback

Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
This commit is contained in:
Brian Coca 2013-03-13 18:11:23 -04:00
parent fdee719d79
commit d3f6071d66

4
apt
View file

@ -226,6 +226,7 @@ def main():
p = module.params
install_recommends = p['install_recommends']
try:
cache = apt.Cache()
if p['default_release']:
apt_pkg.config['APT::Default-Release'] = p['default_release']
@ -262,6 +263,9 @@ def main():
elif p['state'] in [ 'removed', 'absent' ]:
remove(module, packages, cache, p['purge'])
except LockFailedException:
module.fail_json(msg="Failed to lock apt for exclusive operation")
# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>