mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix tuples to actually be tuples (#52591)
This commit is contained in:
parent
6746ec6331
commit
b5c2b407d6
4 changed files with 8 additions and 8 deletions
|
@ -499,9 +499,9 @@ def main():
|
||||||
mutually_exclusive=[('failover', 'region', 'weight')],
|
mutually_exclusive=[('failover', 'region', 'weight')],
|
||||||
# failover, region and weight require identifier
|
# failover, region and weight require identifier
|
||||||
required_by=dict(
|
required_by=dict(
|
||||||
failover=('identifier'),
|
failover=('identifier',),
|
||||||
region=('identifier'),
|
region=('identifier',),
|
||||||
weight=('identifier'),
|
weight=('identifier',),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -583,10 +583,10 @@ def main():
|
||||||
['insertafter', 'insertbefore'],
|
['insertafter', 'insertbefore'],
|
||||||
],
|
],
|
||||||
required_by=dict(
|
required_by=dict(
|
||||||
cron_file=('user'),
|
cron_file=('user',),
|
||||||
),
|
),
|
||||||
required_if=(
|
required_if=(
|
||||||
('state', 'present', ('job')),
|
('state', 'present', ('job',)),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -648,8 +648,8 @@ def main():
|
||||||
),
|
),
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
required_by=dict(
|
required_by=dict(
|
||||||
interface=('zone'),
|
interface=('zone',),
|
||||||
source=('permanent'),
|
source=('permanent',),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -361,7 +361,7 @@ def main():
|
||||||
add_file_common_args=True,
|
add_file_common_args=True,
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
required_by=dict(
|
required_by=dict(
|
||||||
option=('iface'),
|
option=('iface',),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue