Commit 23738766 authored by Thomas Gambier's avatar Thomas Gambier 🚴🏼

remove trailing spaces

parent 2fa89eca
...@@ -7,25 +7,25 @@ ...@@ -7,25 +7,25 @@
register: gitignore_file register: gitignore_file
- name: Install git - name: Install git
apt: name=git state=latest update_cache=no apt: name=git state=latest update_cache=no
when: ansible_os_family == "Debian" when: ansible_os_family == "Debian"
- name: Install git - name: Install git
yum: name=git state=latest update_cache=no yum: name=git state=latest update_cache=no
when: ansible_os_family == "RedHat" when: ansible_os_family == "RedHat"
- name: Install etckeeper - name: Install etckeeper
apt: name=etckeeper state=latest update_cache=no apt: name=etckeeper state=latest update_cache=no
when: ansible_os_family == "Debian" when: ansible_os_family == "Debian"
- name: Install etckeeper - name: Install etckeeper
yum: name=etckeeper state=latest update_cache=no yum: name=etckeeper state=latest update_cache=no
when: ansible_os_family == "RedHat" when: ansible_os_family == "RedHat"
- file: path=/etc/.gitignore state=touch mode=0660 - file: path=/etc/.gitignore state=touch mode=0660
- lineinfile: - lineinfile:
dest=/etc/.gitignore dest=/etc/.gitignore
line={{ item }} line={{ item }}
when: etckeeper_configuration.stat.exists == True when: etckeeper_configuration.stat.exists == True
with_items: with_items:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment