1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_i3wm.git synced 2024-08-16 10:09:53 +02:00

Removed whitespaces

This commit is contained in:
Lilian Roller 2019-04-24 12:43:25 +02:00
parent 80c98593ad
commit a7092361c7
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
5 changed files with 7 additions and 7 deletions

View file

@ -18,7 +18,7 @@ galaxy_info:
versions:
- 28
- 29
galaxy_tags:
galaxy_tags:
- i3wm
- arch
- desktop

View file

@ -16,7 +16,7 @@
# create i3 config file
- name: Creates directory
file:
file:
path: '/home/{{ i3wm_user }}/.config'
state: directory
mode: 0750

View file

@ -2,6 +2,6 @@
- name: ensure i3 packages are installed.
pacman:
name: "{{ i3_packages }}"
state: latest
state: present
update_cache: yes
become: true

View file

@ -2,5 +2,5 @@
- name: ensure i3 packages are installed.
dnf:
name: "{{ i3_packages }}"
state: "latest"
state: present
become: true

View file

@ -23,20 +23,20 @@
- name: define i3_packages
set_fact:
i3_keybindings: "{{ __i3_keybindings | list }}"
when:
when:
- i3_keybindings is not defined
- __i3_keybindings is defined
- name: define extra i3 keybindings
set_fact:
i3_keybindings: "{{ i3_keybindings_extra | list + i3_keybindings | list }}"
when:
when:
- i3_keybindings_extra is defined
- i3_keybindings is defined
- name: define extra i3 keybindings
set_fact:
i3_keybindings: "{{ i3_keybindings_extra | list }}"
when:
when:
- i3_keybindings_extra is defined
- i3_keybindings is not defined