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

fixing syntax error

This commit is contained in:
John Jarvis 2013-05-18 19:49:25 -04:00
parent 9db256adce
commit 423fe82d94

View file

@ -264,8 +264,10 @@ def main():
except:
module.fail_json(msg="Could not import python modules: apt, apt_pkg. Please install python-apt package.")
global APTITUDE_CMD = module.get_bin_path("aptitude", False)
global APT_GET_CMD = module.get_bin_path("apt-get")
global APTITUDE_CMD
APTITUDE_CMD = module.get_bin_path("aptitude", False)
global APT_GET_CMD
APT_GET_CMD = module.get_bin_path("apt-get")
p = module.params
install_recommends = p['install_recommends']