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 - name: Set up development machine
hosts: localhost hosts: localhost
vars_prompt: vars_prompt:

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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