Commit 568b4a80 by James Cammarata

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

Add check of return code for autoinstallation of python-apt
parents 68c30548 8bdd96b2
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment