Explicit check of return code for autoinstallation of python-apt added

This will allow easier debugging through more meaningful error message.
reviewable/pr18780/r1
Radek Simko 11 years ago
parent afd0e78f16
commit 7d47f46807

@ -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

Loading…
Cancel
Save