now captures cache fetch failures

pull/18777/head
Brian Coca 10 years ago committed by Matt Clay
parent f9a6ec95b0
commit 65d3b167e6

@ -619,6 +619,8 @@ def main():
except apt.cache.LockFailedException: except apt.cache.LockFailedException:
module.fail_json(msg="Failed to lock apt for exclusive operation") 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 # import module snippets
from ansible.module_utils.basic import * from ansible.module_utils.basic import *

Loading…
Cancel
Save