From 223c689ec0832231fb6630962e3614e65ac843d4 Mon Sep 17 00:00:00 2001 From: Patrick Galbraith Date: Mon, 26 Oct 2015 13:28:10 -0400 Subject: [PATCH] Fix to issue 12912. Supply 'force' to install of python-apt. --- lib/ansible/modules/packaging/os/apt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/packaging/os/apt.py b/lib/ansible/modules/packaging/os/apt.py index 1fd770f710e..d99eb85ff7e 100755 --- a/lib/ansible/modules/packaging/os/apt.py +++ b/lib/ansible/modules/packaging/os/apt.py @@ -559,7 +559,7 @@ def main(): if not HAS_PYTHON_APT: try: - module.run_command('apt-get update && apt-get install python-apt -y -q', use_unsafe_shell=True, check_rc=True) + module.run_command('apt-get update && apt-get install python-apt -y -q --force-yes', use_unsafe_shell=True, check_rc=True) global apt, apt_pkg import apt import apt.debfile