Also allow the apt module to use package or name as an alias for 'pkg'

reviewable/pr18780/r1
Michael DeHaan 13 years ago
parent 6ab8497a9a
commit 9d08eefa9a

2
apt

@ -113,7 +113,7 @@ for x in items:
params[k] = v
state = params.get('state','installed')
package = params.get('pkg', None)
package = params.get('pkg', params.get('package', params.get('name', None)))
update_cache = params.get('update-cache', 'no')
purge = params.get('purge', 'no')

Loading…
Cancel
Save