mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-04 15:34:01 -07:00
[PR #10513/3b551f92 backport][stable-11] arg_spec adjustments: modules [t-z]* (#10535)
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]* (#10513)
* arg_spec adjustments: modules [t-z]*
* add changelog frag
(cherry picked from commit 3b551f92fc
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
57c523af55
commit
ccc2fcefdd
18 changed files with 161 additions and 143 deletions
|
@ -605,22 +605,22 @@ def main():
|
|||
module = AnsibleModule(
|
||||
argument_spec=dict(
|
||||
name=dict(required=True, aliases=['pkg'], type='list', elements='str'),
|
||||
state=dict(required=False, default='present', choices=['absent', 'installed', 'latest', 'present', 'removed', 'dist-upgrade']),
|
||||
type=dict(required=False, default='package', choices=['package', 'patch', 'pattern', 'product', 'srcpackage', 'application']),
|
||||
extra_args_precommand=dict(required=False, default=None),
|
||||
disable_gpg_check=dict(required=False, default=False, type='bool'),
|
||||
disable_recommends=dict(required=False, default=True, type='bool'),
|
||||
force=dict(required=False, default=False, type='bool'),
|
||||
force_resolution=dict(required=False, default=False, type='bool'),
|
||||
update_cache=dict(required=False, aliases=['refresh'], default=False, type='bool'),
|
||||
oldpackage=dict(required=False, default=False, type='bool'),
|
||||
extra_args=dict(required=False, default=None),
|
||||
allow_vendor_change=dict(required=False, default=False, type='bool'),
|
||||
replacefiles=dict(required=False, default=False, type='bool'),
|
||||
clean_deps=dict(required=False, default=False, type='bool'),
|
||||
simple_errors=dict(required=False, default=False, type='bool'),
|
||||
quiet=dict(required=False, default=True, type='bool'),
|
||||
skip_post_errors=dict(required=False, default=False, type='bool'),
|
||||
state=dict(default='present', choices=['absent', 'installed', 'latest', 'present', 'removed', 'dist-upgrade']),
|
||||
type=dict(default='package', choices=['package', 'patch', 'pattern', 'product', 'srcpackage', 'application']),
|
||||
extra_args_precommand=dict(),
|
||||
disable_gpg_check=dict(default=False, type='bool'),
|
||||
disable_recommends=dict(default=True, type='bool'),
|
||||
force=dict(default=False, type='bool'),
|
||||
force_resolution=dict(default=False, type='bool'),
|
||||
update_cache=dict(aliases=['refresh'], default=False, type='bool'),
|
||||
oldpackage=dict(default=False, type='bool'),
|
||||
extra_args=dict(),
|
||||
allow_vendor_change=dict(default=False, type='bool'),
|
||||
replacefiles=dict(default=False, type='bool'),
|
||||
clean_deps=dict(default=False, type='bool'),
|
||||
simple_errors=dict(default=False, type='bool'),
|
||||
quiet=dict(default=True, type='bool'),
|
||||
skip_post_errors=dict(default=False, type='bool'),
|
||||
),
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue