mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes #2380 - argument checking in file accepts chained arguments from copy
This commit is contained in:
parent
e307658350
commit
0c80c76833
1 changed files with 3 additions and 0 deletions
|
@ -107,7 +107,10 @@ FILE_COMMON_ARGUMENTS=dict(
|
||||||
serole = dict(),
|
serole = dict(),
|
||||||
selevel = dict(),
|
selevel = dict(),
|
||||||
setype = dict(),
|
setype = dict(),
|
||||||
|
# not taken by the file module, but other modules call file so it must ignore them.
|
||||||
content = dict(),
|
content = dict(),
|
||||||
|
backup = dict(),
|
||||||
|
force = dict(),
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_platform():
|
def get_platform():
|
||||||
|
|
Loading…
Reference in a new issue