mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 09:43:15 +00:00
Change state back to a required parameter
This commit is contained in:
@@ -322,7 +322,7 @@ def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
name = dict(required=True),
|
||||
state = dict(default=None, choices=['running', 'started', 'present', 'stopped', 'absent']),
|
||||
state = dict(required=True, choices=['running', 'started', 'present', 'stopped', 'absent']),
|
||||
path = dict(defalt=None),
|
||||
sparse = dict(default=False, type='bool'),
|
||||
root_password = dict(default=None),
|
||||
|
||||
Reference in New Issue
Block a user