Use YAML consistently

This commit is contained in:
Johanna Dorothea Reichmann 2019-05-02 19:39:41 +02:00
parent 15c552fe4e
commit 46f25cf616
Signed by: transcaffeine
GPG Key ID: 03624C433676E465

View File

@ -2,23 +2,31 @@
# Installs GnuPG2 and templates the configs # Installs GnuPG2 and templates the configs
- name: Install gnupg (RedHat*) - name: Install gnupg (RedHat*)
yum: name=gnupg2 state=latest package:
name: gnupg2
state: latest
when: ansible_os_family == "RedHat" when: ansible_os_family == "RedHat"
- name: Install gnupg (Arch) - name: Install gnupg (Arch)
pacman: package:
name: gnupg name: gnupg
state: latest state: latest
when: ansible_os_family == "Archlinux" when: ansible_os_family == "Archlinux"
- name: Configure gpg.conf (behaviour of gpg) - name: Configure gpg.conf (behaviour of gpg)
template: src=gpg.conf.j2 ~/.gnupg/gpg.conf template:
src: gpg.conf.j2
dest: ~/.gnupg/gpg.conf
- name: Configure gpg-agent.conf (agent configuration) - name: Configure gpg-agent.conf (agent configuration)
template: src=gpg-agent.conf.j2 ~/.gnupg/gpg-agent.conf template:
src: gpg-agent.conf.j2
dest: ~/.gnupg/gpg-agent.conf
- name: Configure ssh-control (in order for gpg-agent to act as ssh-agent) - name: Configure ssh-control (in order for gpg-agent to act as ssh-agent)
template: src=sshcontrol.j2 ~/.gnupg/sshcontrol template:
src: sshcontrol.j2
dest: ~/.gnupg/sshcontrol
- name: Copy gnupg_agent script, which makes gpg-agent responsible for ssh-auth - name: Copy gnupg_agent script, which makes gpg-agent responsible for ssh-auth
copy: copy: