now captures cache fetch failures

This commit is contained in:
Brian Coca 2015-01-14 17:22:05 -05:00
parent 44ec0d735e
commit e2dcb5fc9b

View file

@ -619,6 +619,8 @@ def main():
except apt.cache.LockFailedException:
module.fail_json(msg="Failed to lock apt for exclusive operation")
except apt.cache.FetchFailedException:
module.fail_json(msg="Could not fetch updated apt files")
# import module snippets
from ansible.module_utils.basic import *