mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-04 23:44:00 -07:00
arg_spec adjustments: modules [t-z]* (#10513)
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.16) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.11) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.6) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.16) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.11) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.6) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
* arg_spec adjustments: modules [t-z]* * add changelog frag
This commit is contained in:
parent
d0b0aff5bc
commit
3b551f92fc
18 changed files with 161 additions and 143 deletions
|
@ -326,17 +326,17 @@ def runrefreshrepo(module, auto_import_keys=False, shortname=None):
|
|||
def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec=dict(
|
||||
name=dict(required=False),
|
||||
repo=dict(required=False),
|
||||
name=dict(),
|
||||
repo=dict(),
|
||||
state=dict(choices=['present', 'absent'], default='present'),
|
||||
runrefresh=dict(required=False, default=False, type='bool'),
|
||||
description=dict(required=False),
|
||||
disable_gpg_check=dict(required=False, default=False, type='bool'),
|
||||
autorefresh=dict(required=False, default=True, type='bool', aliases=['refresh']),
|
||||
priority=dict(required=False, type='int'),
|
||||
enabled=dict(required=False, default=True, type='bool'),
|
||||
overwrite_multiple=dict(required=False, default=False, type='bool'),
|
||||
auto_import_keys=dict(required=False, default=False, type='bool'),
|
||||
runrefresh=dict(default=False, type='bool'),
|
||||
description=dict(),
|
||||
disable_gpg_check=dict(default=False, type='bool'),
|
||||
autorefresh=dict(default=True, type='bool', aliases=['refresh']),
|
||||
priority=dict(type='int'),
|
||||
enabled=dict(default=True, type='bool'),
|
||||
overwrite_multiple=dict(default=False, type='bool'),
|
||||
auto_import_keys=dict(default=False, type='bool'),
|
||||
),
|
||||
supports_check_mode=False,
|
||||
required_one_of=[['state', 'runrefresh']],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue