mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Rename 'ensure' to 'state' so it lines up with the service module
This commit is contained in:
parent
ae0e4ff0cf
commit
1699013fbd
1 changed files with 3 additions and 3 deletions
|
@ -195,8 +195,8 @@ def remove_only(pkgspec):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
# ensure=installed pkg=pkgspec
|
# state=installed pkg=pkgspec
|
||||||
# ensure=removed pkg=pkgspec
|
# state=removed pkg=pkgspec
|
||||||
# list=installed
|
# list=installed
|
||||||
# list=updates
|
# list=updates
|
||||||
# list=available
|
# list=available
|
||||||
|
@ -222,7 +222,7 @@ def main():
|
||||||
results = list_stuff(my, params['list'])
|
results = list_stuff(my, params['list'])
|
||||||
elif 'ensure' in params:
|
elif 'ensure' in params:
|
||||||
my = yum_base(conf_file=params['conf_file'], cachedir=True)
|
my = yum_base(conf_file=params['conf_file'], cachedir=True)
|
||||||
state = params['ensure']
|
state = params['state']
|
||||||
pkgspec = params['pkg']
|
pkgspec = params['pkg']
|
||||||
results = ensure(my, state, pkgspec)
|
results = ensure(my, state, pkgspec)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue