mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
E501 fixes (#22879)
This commit is contained in:
parent
4fdeade389
commit
3164e8b561
215 changed files with 1328 additions and 761 deletions
|
@ -138,14 +138,15 @@ def set_selection(module, pkg, question, vtype, value, unseen):
|
|||
def main():
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
name = dict(required=True, aliases=['pkg'], type='str'),
|
||||
question = dict(required=False, aliases=['setting', 'selection'], type='str'),
|
||||
vtype = dict(required=False, type='str', choices=['string', 'password', 'boolean', 'select', 'multiselect', 'note', 'error', 'title', 'text', 'seen']),
|
||||
value = dict(required=False, type='str', aliases=['answer']),
|
||||
unseen = dict(required=False, type='bool'),
|
||||
argument_spec=dict(
|
||||
name=dict(required=True, aliases=['pkg'], type='str'),
|
||||
question=dict(required=False, aliases=['setting', 'selection'], type='str'),
|
||||
vtype=dict(required=False, type='str', choices=['string', 'password', 'boolean', 'select', 'multiselect', 'note', 'error', 'title',
|
||||
'text', 'seen']),
|
||||
value=dict(required=False, type='str', aliases=['answer']),
|
||||
unseen=dict(required=False, type='bool'),
|
||||
),
|
||||
required_together = ( ['question','vtype', 'value'],),
|
||||
required_together=(['question','vtype', 'value'],),
|
||||
supports_check_mode=True,
|
||||
)
|
||||
|
||||
|
|
|
@ -60,13 +60,17 @@ options:
|
|||
version_added: "2.1"
|
||||
zone:
|
||||
description:
|
||||
- 'The firewalld zone to add/remove to/from (NOTE: default zone can be configured per system but "public" is default from upstream. Available choices can be extended based on per-system configs, listed here are "out of the box" defaults).'
|
||||
- >
|
||||
The firewalld zone to add/remove to/from (NOTE: default zone can be configured per system but "public" is default from upstream. Available choices
|
||||
can be extended based on per-system configs, listed here are "out of the box" defaults).
|
||||
required: false
|
||||
default: system-default(public)
|
||||
choices: [ "work", "drop", "internal", "external", "trusted", "home", "dmz", "public", "block" ]
|
||||
permanent:
|
||||
description:
|
||||
- "Should this configuration be in the running firewalld configuration or persist across reboots. As of Ansible version 2.3, permanent operations can operate on firewalld configs when it's not running (requires firewalld >= 3.0.9)"
|
||||
- >
|
||||
Should this configuration be in the running firewalld configuration or persist across reboots. As of Ansible version 2.3, permanent operations can
|
||||
operate on firewalld configs when it's not running (requires firewalld >= 3.0.9)
|
||||
required: false
|
||||
default: null
|
||||
immediate:
|
||||
|
@ -495,7 +499,8 @@ def main():
|
|||
except ImportError:
|
||||
## Make python 2.4 shippable ci tests happy
|
||||
e = sys.exc_info()[1]
|
||||
module.fail_json(msg='firewalld and its python 2 module are required for this module, version 2.0.11 or newer required (3.0.9 or newer for offline operations) \n %s' % e)
|
||||
module.fail_json(msg='firewalld and its python 2 module are required for this module, version 2.0.11 or newer required '
|
||||
'(3.0.9 or newer for offline operations) \n %s' % e)
|
||||
|
||||
if fw_offline:
|
||||
## Pre-run version checking
|
||||
|
|
|
@ -42,7 +42,8 @@ options:
|
|||
default: null
|
||||
key:
|
||||
description:
|
||||
- The SSH public host key, as a string (required if state=present, optional when state=absent, in which case all keys for the host are removed). The key must be in the right format for ssh (see sshd(1), section "SSH_KNOWN_HOSTS FILE FORMAT")
|
||||
- The SSH public host key, as a string (required if state=present, optional when state=absent, in which case all keys for the host are removed).
|
||||
The key must be in the right format for ssh (see sshd(1), section "SSH_KNOWN_HOSTS FILE FORMAT")
|
||||
required: false
|
||||
default: null
|
||||
path:
|
||||
|
|
|
@ -419,7 +419,10 @@ def main():
|
|||
if (size_free > 0) and (('+' not in size) or (size_free >= (size_requested - this_lv['size']))):
|
||||
tool = module.get_bin_path("lvextend", required=True)
|
||||
else:
|
||||
module.fail_json(msg="Logical Volume %s could not be extended. Not enough free space left (%s%s required / %s%s available)" % (this_lv['name'], (size_requested - this_lv['size']), unit, size_free, unit))
|
||||
module.fail_json(
|
||||
msg="Logical Volume %s could not be extended. Not enough free space left (%s%s required / %s%s available)" %
|
||||
(this_lv['name'], (size_requested - this_lv['size']), unit, size_free, unit)
|
||||
)
|
||||
elif shrink and this_lv['size'] > size_requested + this_vg['ext_size']: # more than an extent too large
|
||||
if size_requested == 0:
|
||||
module.fail_json(msg="Sorry, no shrinking of %s to 0 permitted." % (this_lv['name']))
|
||||
|
|
|
@ -47,7 +47,26 @@ options:
|
|||
description:
|
||||
- The limit to be set
|
||||
required: true
|
||||
choices: [ "core", "data", "fsize", "memlock", "nofile", "rss", "stack", "cpu", "nproc", "as", "maxlogins", "maxsyslogins", "priority", "locks", "sigpending", "msgqueue", "nice", "rtprio", "chroot" ]
|
||||
choices:
|
||||
- "core"
|
||||
- "data"
|
||||
- "fsize"
|
||||
- "memlock"
|
||||
- "nofile"
|
||||
- "rss"
|
||||
- "stack"
|
||||
- "cpu"
|
||||
- "nproc"
|
||||
- "as"
|
||||
- "maxlogins"
|
||||
- "maxsyslogins"
|
||||
- "priority"
|
||||
- "locks"
|
||||
- "sigpending"
|
||||
- "msgqueue"
|
||||
- "nice"
|
||||
- "rtprio"
|
||||
- "chroot"
|
||||
value:
|
||||
description:
|
||||
- The value of the limit.
|
||||
|
@ -120,7 +139,8 @@ import re
|
|||
|
||||
def main():
|
||||
|
||||
pam_items = [ 'core', 'data', 'fsize', 'memlock', 'nofile', 'rss', 'stack', 'cpu', 'nproc', 'as', 'maxlogins', 'maxsyslogins', 'priority', 'locks', 'sigpending', 'msgqueue', 'nice', 'rtprio', 'chroot' ]
|
||||
pam_items = ['core', 'data', 'fsize', 'memlock', 'nofile', 'rss', 'stack', 'cpu', 'nproc', 'as', 'maxlogins', 'maxsyslogins', 'priority', 'locks',
|
||||
'sigpending', 'msgqueue', 'nice', 'rtprio', 'chroot']
|
||||
|
||||
pam_types = [ 'soft', 'hard', '-' ]
|
||||
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
||||
|
|
|
@ -246,7 +246,7 @@ status:
|
|||
"WatchdogTimestampMonotonic": "0",
|
||||
"WatchdogUSec": "0",
|
||||
}
|
||||
'''
|
||||
''' # NOQA
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.service import sysv_exists, sysv_is_enabled, fail_if_missing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue