Fix some lint nagging
This commit is contained in:
parent
e753d577bc
commit
4b34c6a45e
2 changed files with 4 additions and 2 deletions
|
@ -43,7 +43,7 @@
|
||||||
when: ansible_facts['distribution'] == 'Debian'
|
when: ansible_facts['distribution'] == 'Debian'
|
||||||
|
|
||||||
- name: Clone repos
|
- name: Clone repos
|
||||||
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes update=no
|
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes update=no version=master
|
||||||
with_items:
|
with_items:
|
||||||
- {repo: 'https://github.com/addy-dclxvi/i3-starterpack.git', dest: '~/.git_clones/i3-starterpack'}
|
- {repo: 'https://github.com/addy-dclxvi/i3-starterpack.git', dest: '~/.git_clones/i3-starterpack'}
|
||||||
- {repo: 'https://github.com/vivien/i3blocks-contrib.git', dest: '~/.git_clones/i3blocks-contrib'}
|
- {repo: 'https://github.com/vivien/i3blocks-contrib.git', dest: '~/.git_clones/i3blocks-contrib'}
|
||||||
|
@ -53,9 +53,10 @@
|
||||||
src: i3config.j2
|
src: i3config.j2
|
||||||
dest: ~/.config/i3/config
|
dest: ~/.config/i3/config
|
||||||
backup: true
|
backup: true
|
||||||
|
mode: 0644
|
||||||
|
|
||||||
- name: Copy files
|
- name: Copy files
|
||||||
copy: src={{ item.src }} dest={{ item.dest }} backup=true
|
copy: src={{ item.src }} dest={{ item.dest }} backup=true mode=0644
|
||||||
with_items:
|
with_items:
|
||||||
- {src: 'i3blocksconfig', dest: '~/.config/i3blocks/config'}
|
- {src: 'i3blocksconfig', dest: '~/.config/i3blocks/config'}
|
||||||
- {src: 'xinitrc', dest: '~/.xinitrc'}
|
- {src: 'xinitrc', dest: '~/.xinitrc'}
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
dest: ~/builds/librewolf-bin
|
dest: ~/builds/librewolf-bin
|
||||||
clone: true
|
clone: true
|
||||||
update: false
|
update: false
|
||||||
|
version: master
|
||||||
when: ansible_facts['distribution'] == 'Archlinux'
|
when: ansible_facts['distribution'] == 'Archlinux'
|
||||||
|
|
||||||
- name: Add gpg key for librewolf
|
- name: Add gpg key for librewolf
|
||||||
|
|
Loading…
Add table
Reference in a new issue