diff --git a/plugins/modules/packaging/os/pacman_key.py b/plugins/modules/packaging/os/pacman_key.py index 7d5cfcd51b..b09f728ce5 100644 --- a/plugins/modules/packaging/os/pacman_key.py +++ b/plugins/modules/packaging/os/pacman_key.py @@ -16,15 +16,16 @@ DOCUMENTATION = ''' module: pacman_key author: - George Rawlinson (@grawlinson) -version_added: "2.10" +version_added: "1.1.0" short_description: Manage pacman's list of trusted keys description: - Add or remove gpg keys from the pacman keyring. notes: -- Use full key id (16 characters) and fingerprint (40 characters) to avoid key collisions. +- Use full key ID (16 characters) and fingerprint (40 characters) to avoid key collisions. - If you specify both the key id and the URL with C(state=present), the task can verify or add the key as needed. - By default, keys will be locally signed after being imported into the keyring. - If the specified key id exists in the keyring, the key will not be added. +- data, file, and url are mutually exclusive. requirements: - gpg - pacman-key diff --git a/plugins/modules/pacman_key.py b/plugins/modules/pacman_key.py new file mode 120000 index 0000000000..ac0f448232 --- /dev/null +++ b/plugins/modules/pacman_key.py @@ -0,0 +1 @@ +packaging/os/pacman_key.py \ No newline at end of file