mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
Fix tuples to actually be tuples (#52591)
This commit is contained in:
@@ -499,9 +499,9 @@ def main():
|
||||
mutually_exclusive=[('failover', 'region', 'weight')],
|
||||
# failover, region and weight require identifier
|
||||
required_by=dict(
|
||||
failover=('identifier'),
|
||||
region=('identifier'),
|
||||
weight=('identifier'),
|
||||
failover=('identifier',),
|
||||
region=('identifier',),
|
||||
weight=('identifier',),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
@@ -583,10 +583,10 @@ def main():
|
||||
['insertafter', 'insertbefore'],
|
||||
],
|
||||
required_by=dict(
|
||||
cron_file=('user'),
|
||||
cron_file=('user',),
|
||||
),
|
||||
required_if=(
|
||||
('state', 'present', ('job')),
|
||||
('state', 'present', ('job',)),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
@@ -648,8 +648,8 @@ def main():
|
||||
),
|
||||
supports_check_mode=True,
|
||||
required_by=dict(
|
||||
interface=('zone'),
|
||||
source=('permanent'),
|
||||
interface=('zone',),
|
||||
source=('permanent',),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
@@ -361,7 +361,7 @@ def main():
|
||||
add_file_common_args=True,
|
||||
supports_check_mode=True,
|
||||
required_by=dict(
|
||||
option=('iface'),
|
||||
option=('iface',),
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user