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

Return a friendly error message if aptitude isn't installed

This commit is contained in:
serenecloud 2013-06-30 15:36:13 +12:00
parent d61a65ff08
commit a17ca862fb

View file

@ -286,6 +286,9 @@ def main():
global APT_GET_CMD
APT_GET_CMD = module.get_bin_path("apt-get")
if not APTITUDE_CMD:
module.fail_json(msg="Could not find aptitude. Please ensure it is installed.")
p = module.params
install_recommends = p['install_recommends']