Remove optional --- from YAML files

This commit is contained in:
Fernando Schauenburg 2019-11-16 12:32:43 +00:00
parent 073790d6cf
commit 7d961dd352
13 changed files with 0 additions and 13 deletions

View file

@ -1,4 +1,3 @@
---
- name: Set up development machine
hosts: localhost
vars_prompt:

View file

@ -1,4 +1,3 @@
---
- name: Remove pre-installed bash configurations which could cause conflicts
file:
state: absent

View file

@ -1,4 +1,3 @@
---
- name: Create local bin directory
file:
path: ~/.local/bin

View file

@ -1,4 +1,3 @@
---
- name: Create the dircolors config directory
file:
path: ~/.config/dircolors

View file

@ -1,4 +1,3 @@
---
- name: Install git (Debian)
when: ansible_os_family == "Debian"
become: yes

View file

@ -1,4 +1,3 @@
---
- name: Check if hushlogin exists
register: hushlogin_stat
stat:

View file

@ -1,4 +1,3 @@
---
- name: Create the mintty config directory
file:
path: ~/.config/mintty

View file

@ -1,4 +1,3 @@
---
- name: Set up Debian machine
when: ansible_os_family == "Debian"
become: yes

View file

@ -1,4 +1,3 @@
---
- name: Install python3 (Debian)
when: ansible_os_family == "Debian"
become: yes

View file

@ -1,4 +1,3 @@
---
- name: Create the readline config directory
file:
path: ~/.config/readline

View file

@ -1,4 +1,3 @@
---
- name: Create the SSH directory
file:
path: ~/.ssh

View file

@ -1,4 +1,3 @@
---
- name: Install tmux (Debian)
when: ansible_os_family == "Debian"
become: yes

View file

@ -1,4 +1,3 @@
---
- name: Install vim (Debian)
when: ansible_os_family == "Debian"
become: yes