mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 07:01:22 -07:00
E501 fixes (#22879)
This commit is contained in:
parent
4fdeade389
commit
3164e8b561
215 changed files with 1328 additions and 761 deletions
|
@ -444,18 +444,18 @@ class Zone(object):
|
|||
|
||||
def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
name = dict(required=True),
|
||||
state = dict(default='present', choices=['running', 'started', 'present', 'installed', 'stopped', 'absent', 'configured', 'detached', 'attached']),
|
||||
path = dict(default=None),
|
||||
sparse = dict(default=False, type='bool'),
|
||||
root_password = dict(default=None, no_log=True),
|
||||
timeout = dict(default=600, type='int'),
|
||||
config = dict(default=''),
|
||||
create_options = dict(default=''),
|
||||
install_options = dict(default=''),
|
||||
attach_options = dict(default=''),
|
||||
),
|
||||
argument_spec=dict(
|
||||
name=dict(required=True),
|
||||
state=dict(default='present', choices=['running', 'started', 'present', 'installed', 'stopped', 'absent', 'configured', 'detached', 'attached']),
|
||||
path=dict(default=None),
|
||||
sparse=dict(default=False, type='bool'),
|
||||
root_password=dict(default=None, no_log=True),
|
||||
timeout=dict(default=600, type='int'),
|
||||
config=dict(default=''),
|
||||
create_options=dict(default=''),
|
||||
install_options=dict(default=''),
|
||||
attach_options=dict(default=''),
|
||||
),
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue