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

remove trailing spaces

parent 2fa89eca
......@@ -7,25 +7,25 @@
register: gitignore_file
- name: Install git
apt: name=git state=latest update_cache=no
apt: name=git state=latest update_cache=no
when: ansible_os_family == "Debian"
- name: Install git
yum: name=git state=latest update_cache=no
yum: name=git state=latest update_cache=no
when: ansible_os_family == "RedHat"
- name: Install etckeeper
apt: name=etckeeper state=latest update_cache=no
apt: name=etckeeper state=latest update_cache=no
when: ansible_os_family == "Debian"
- name: Install etckeeper
yum: name=etckeeper state=latest update_cache=no
yum: name=etckeeper state=latest update_cache=no
when: ansible_os_family == "RedHat"
- file: path=/etc/.gitignore state=touch mode=0660
- lineinfile:
dest=/etc/.gitignore
- lineinfile:
dest=/etc/.gitignore
line={{ item }}
when: etckeeper_configuration.stat.exists == True
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