1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #7094 from radeksimko/apt-autoinstall-fix

Add check of return code for autoinstallation of python-apt
This commit is contained in:
James Cammarata 2014-04-21 11:48:27 -05:00
commit 568b4a801c

View file

@ -432,7 +432,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)
module.run_command('apt-get update && apt-get install python-apt -y -q', use_unsafe_shell=True, check_rc=True)
global apt, apt_pkg
import apt
import apt_pkg