From e2dcb5fc9bd701fd89931ace29e99a198140c300 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 14 Jan 2015 17:22:05 -0500 Subject: [PATCH] now captures cache fetch failures --- packaging/os/apt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging/os/apt.py b/packaging/os/apt.py index ad1807f9c20..9f5b8fd4cda 100644 --- a/packaging/os/apt.py +++ b/packaging/os/apt.py @@ -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 *