Fix #11 #12

Merged
vincentvdk merged 2 commits from fix/11 into master 2018-09-14 05:02:47 +00:00
Showing only changes of commit 9e5b355326 - Show all commits

View file

@ -53,26 +53,3 @@
- skip_missing: true
when: item.ssh_config is defined and item.state == "present"
#- name: Configure ~/.ssh/config
# blockinfile:
# path: "/home/{{ item.0.name }}/.ssh/config"
# owner: "{{ item.0.name }}"
# group: "{{ item.0.name }}"
# mode: 0600
# marker: "# {mark} ANSIBLE MANAGED BLOCK"
# content: |
# {% for host in groups['all'] -%}
# Host {{ hostvars[host]['ssh_short_name'] }}
# Hostname {{ hostvars[host]['inventory_hostname'] }}
# RemoteForward /home/{{ item.0.name }}/.gnupg/S.gpg-agent $HOME/.gnupg/S.gpg-agent
# RemoteForward /home/{{ item.0.name }}/.gnupg/S.gpg-agent.ssh $HOME/.gnupg/S.gpg-agent.ssh
# {% for k,v in item.1.items() %}
# {% if k|lower != "host" and k|lower != "hostname" %}
# {{k}} {{v}}
# {% endif %}
# {% endfor %}
# {% endfor %}
# with_dict:
# - "{{ users }}"
# - skip_missing: true
# when: item.0.state == "present"