Tidy up sanity checks ignore lines for source_control/* modules (#1893) (#1896)

* fixed validation-modules for plugins/modules/source_control/git*

* Tidy up sanity checks ignore lines for source_control/* modules

* removed unnecessary ignore lines from 2.9 and 2.11

(cherry picked from commit cf5e9bf44c)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2021-02-25 10:05:46 +01:00 committed by GitHub
parent 084879632a
commit 2f56fd7b2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 45 additions and 33 deletions

View file

@ -34,10 +34,12 @@ options:
description:
- The name of the setting. If no value is supplied, the value will
be read from the config if it has been set.
type: str
repo:
description:
- Path to a git repository for reading and writing values from a
specific repo.
type: path
file:
description:
- Path to an adhoc git configuration file to be managed using the C(file) scope.
@ -51,6 +53,7 @@ options:
- If this is set to C(file), you must also specify the C(file) parameter.
- It defaults to system only when not using I(list_all)=C(yes).
choices: [ "file", "local", "global", "system" ]
type: str
state:
description:
- "Indicates the setting should be set/unset.
@ -58,10 +61,12 @@ options:
when I(state)=absent and I(value) is defined, I(value) is discarded."
choices: [ 'present', 'absent' ]
default: 'present'
type: str
value:
description:
- When specifying the name of a single setting, supply a value to
set that setting to the given value.
type: str
'''
EXAMPLES = '''