Type checking on library/apt means the upgrade parameter is now properly True/False

reviewable/pr18780/r1
Michael DeHaan 12 years ago
parent bbcd91b520
commit acb2ab73c2

4
apt

@ -241,9 +241,9 @@ def main():
force_yes = p['force'] force_yes = p['force']
if p['upgrade'] != 'no' and p['package'] is None: if p['upgrade'] and p['package'] is None:
upgrade(module, p['upgrade']) upgrade(module, p['upgrade'])
elif p['upgrade'] != 'no' and p['package'] != None: elif p['upgrade'] and p['package'] != None:
module.fail_json(msg="Upgrade should not be used in conjunction with other options.") module.fail_json(msg="Upgrade should not be used in conjunction with other options.")
packages = p['package'].split(',') packages = p['package'].split(',')

Loading…
Cancel
Save