Commit a9c2e597 by Lorin Hochstein

Fix typo in apt error message: update-cache -> update_cache

The apt parameter changed from update-cache to update_cache, but
the error message still mentioned update-cache
parent 487c8267
...@@ -128,7 +128,7 @@ def main(): ...@@ -128,7 +128,7 @@ def main():
p = module.params p = module.params
if p['package'] is None and p['update_cache'] != 'yes': if p['package'] is None and p['update_cache'] != 'yes':
module.fail_json(msg='pkg=name and/or update-cache=yes is required') module.fail_json(msg='pkg=name and/or update_cache=yes is required')
install_recommends = (p['install_recommends'] == 'yes') install_recommends = (p['install_recommends'] == 'yes')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment