Fix apt module's boolean check to expect converted value

Fixes #2218.
This commit is contained in:
Daniel Hokka Zakrisson 2013-02-27 20:02:34 +01:00
parent 6979deac0f
commit ca3f46d7fa

2
apt
View file

@ -201,7 +201,7 @@ def main():
module.fail_json(msg="Cannot find apt-get")
p = module.params
if p['package'] is None and p['update_cache'] != 'yes':
if p['package'] is None and not p['update_cache']:
module.fail_json(msg='pkg=name and/or update_cache=yes is required')
install_recommends = p['install_recommends']