Add more specific language to module description and examples
* Add 'on the remote server' to `file` parameter description * Add example showing how to use the `file` parameter, with specific language about the file's location being on the 'remote server'
This commit is contained in:
parent
eeecc3adcc
commit
fabb63c43f
1 changed files with 4 additions and 1 deletions
|
@ -47,7 +47,7 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: none
|
default: none
|
||||||
description:
|
description:
|
||||||
- path to a keyfile to add to the keyring
|
- path to a keyfile on the remote server to add to the keyring
|
||||||
keyring:
|
keyring:
|
||||||
required: false
|
required: false
|
||||||
default: none
|
default: none
|
||||||
|
@ -102,6 +102,9 @@ EXAMPLES = '''
|
||||||
|
|
||||||
# Add an Apt signing key to a specific keyring file
|
# Add an Apt signing key to a specific keyring file
|
||||||
- apt_key: id=473041FA url=https://ftp-master.debian.org/keys/archive-key-6.0.asc keyring=/etc/apt/trusted.gpg.d/debian.gpg state=present
|
- apt_key: id=473041FA url=https://ftp-master.debian.org/keys/archive-key-6.0.asc keyring=/etc/apt/trusted.gpg.d/debian.gpg state=present
|
||||||
|
|
||||||
|
# Add Apt signing key on remote server to keyring
|
||||||
|
- apt_key: id=473041FA file=/tmp/apt.gpg state=present
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue