1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add missing id parameter into pacman_key documentation examples. (#7855)

Key ID is a mandatory parameter, and the examples which miss it are
incorrect.
This commit is contained in:
Danila Kiver 2024-01-18 09:33:06 +03:00 committed by GitHub
parent 92f8bf7b6f
commit cd77d67efb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -88,11 +88,13 @@ options:
EXAMPLES = ''' EXAMPLES = '''
- name: Import a key via local file - name: Import a key via local file
community.general.pacman_key: community.general.pacman_key:
id: 01234567890ABCDE01234567890ABCDE12345678
data: "{{ lookup('file', 'keyfile.asc') }}" data: "{{ lookup('file', 'keyfile.asc') }}"
state: present state: present
- name: Import a key via remote file - name: Import a key via remote file
community.general.pacman_key: community.general.pacman_key:
id: 01234567890ABCDE01234567890ABCDE12345678
file: /tmp/keyfile.asc file: /tmp/keyfile.asc
state: present state: present