mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
Fix typo in ignore_unknown_extensions doc
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
7a35e2f8c1
commit
13dd1acbec
2 changed files with 3 additions and 3 deletions
|
@ -56,10 +56,10 @@ options:
|
||||||
description:
|
description:
|
||||||
- List of file extensions to read when using C(dir).
|
- List of file extensions to read when using C(dir).
|
||||||
default: [yaml, yml, json]
|
default: [yaml, yml, json]
|
||||||
ignore_unkown_extensions:
|
ignore_unknown_extensions:
|
||||||
version_added: "2.7"
|
version_added: "2.7"
|
||||||
description:
|
description:
|
||||||
- Ignore unkown file extensions within the directory. This allows users to specify a directory containing vars files
|
- Ignore unknown file extensions within the directory. This allows users to specify a directory containing vars files
|
||||||
that are intermingled with non vars files extension types (For example, a directory with a README in it and vars files)
|
that are intermingled with non vars files extension types (For example, a directory with a README in it and vars files)
|
||||||
default: False
|
default: False
|
||||||
free-form:
|
free-form:
|
||||||
|
|
|
@ -103,7 +103,7 @@ class ActionModule(ActionBase):
|
||||||
raise AnsibleError('{0} is not a valid option in include_vars'.format(arg))
|
raise AnsibleError('{0} is not a valid option in include_vars'.format(arg))
|
||||||
|
|
||||||
if dirs and files:
|
if dirs and files:
|
||||||
raise AnsibleError("Your are mixing file only and dir only arguments, these are incompatible")
|
raise AnsibleError("You are mixing file only and dir only arguments, these are incompatible")
|
||||||
|
|
||||||
# set internal vars from args
|
# set internal vars from args
|
||||||
self._set_args()
|
self._set_args()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue