Merge pull request #4617 from resmo/feature/python-apt

apt: autoinstall python-apt if apt or apt_pkg is not available
This commit is contained in:
jctanner 2013-11-11 18:50:43 -08:00
commit f58bbd5913

View file

@ -344,6 +344,12 @@ def main():
)
if not HAS_PYTHON_APT:
try:
module.run_command('apt-get install python-apt -y -q')
global apt, apt_pkg
import apt
import apt_pkg
except:
module.fail_json(msg="Could not import python modules: apt, apt_pkg. Please install python-apt package.")
global APTITUDE_CMD