Skip to content

Commit fdf31f2

Browse files
committed
Fix warnings (on Ansible 2.3)
1 parent 84e60bf commit fdf31f2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tasks/system.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
alternatives: name=awk path={{ dbs_alternative_awk }}
88

99
- name: COPY | dotfiles for root
10-
copy: src={{ item }} dest=/root/.{{ item }}
10+
copy: src={{ item }} dest="/root/.{{ item }}"
1111
with_items:
12-
- bashrc
13-
- vimrc
14-
- screenrc
15-
- gitconfig
16-
when: "{{ dbs_use_dotfiles }}"
12+
- "bashrc"
13+
- "vimrc"
14+
- "screenrc"
15+
- "gitconfig"
16+
when: dbs_use_dotfiles
1717

1818
- name: SYSCTL | Tuning
1919
sysctl: >

0 commit comments

Comments
 (0)