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

* 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:
Felix Fontein 2021-02-25 10:22:12 +01:00 committed by GitHub
parent 0a364b166b
commit 275b979f7c
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
scope:
description:
- Specify which scope to read/set values from. This is required
@ -45,6 +47,7 @@ options:
also specify the repo parameter. It defaults to system only when
not using I(list_all)=yes.
choices: [ "local", "global", "system" ]
type: str
state:
description:
- "Indicates the setting should be set/unset.
@ -52,10 +55,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 = '''