mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
- name: create empty gpg homedir
|
|
file:
|
|
state: "{{ item }}"
|
|
path: "{{ gpg_homedir }}"
|
|
mode: 0700
|
|
loop:
|
|
- absent
|
|
- directory
|
|
|
|
- when: ansible_facts.distribution == 'MacOSX'
|
|
block:
|
|
- name: MACOS | Find brew binary
|
|
command: which brew
|
|
register: brew_which
|
|
|
|
- name: MACOS | Get owner of brew binary
|
|
stat:
|
|
path: >-
|
|
{{ brew_which.stdout }}
|
|
register: brew_stat
|
|
|
|
- command: brew install gpg
|
|
become: yes
|
|
become_user: >-
|
|
{{ brew_stat.stat.pw_name }}
|
|
environment:
|
|
HOMEBREW_NO_AUTO_UPDATE: True
|
|
notify:
|
|
- uninstall gpg
|
|
|
|
- name: get username for generating key
|
|
command: whoami
|
|
register: user
|
|
|
|
- name: generate key for user with gpg
|
|
command: "gpg --no-tty --homedir {{ gpg_homedir }} --passphrase '' --pinentry-mode loopback --quick-gen-key {{ user.stdout }} default default"
|
|
|
|
- name: list gpg keys for user
|
|
command: "gpg --no-tty --homedir {{ gpg_homedir }} --list-keys {{ user.stdout }}"
|
|
register: gpg_list_keys
|
|
|
|
- name: save gpg user and fingerprint of new key
|
|
set_fact:
|
|
gpg_user: "{{ user.stdout }}"
|
|
fingerprint: "{{ gpg_list_keys.stdout_lines[1] | trim }}"
|