expanded info on fail on check + missing apt-python

it now explains that apt module will auto install
This commit is contained in:
Brian Coca 2016-02-11 01:22:21 -05:00 committed by Matt Clay
parent feb309e3cf
commit 2ed38b79cb

View file

@ -580,7 +580,7 @@ def main():
if not HAS_PYTHON_APT:
if module.check_mode:
module.fail_json(msg="python-apt must be installed to use check mode")
module.fail_json(msg="python-apt must be installed to use check mode. If run normally this module can autoinstall it")
try:
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