We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 134515d commit f66feb9Copy full SHA for f66feb9
ansible/roles/compute_init/tasks/main.yml
@@ -2,16 +2,16 @@
2
3
- name: Ensure directories exist
4
file:
5
- path: "/etc/ansible-init/{{ item.directory }}"
+ path: "/etc/ansible-init/{{ item }}"
6
state: directory
7
owner: root
8
group: root
9
mode: 0755
10
loop:
11
- - { directory: "templates" }
12
- - { directory: "files" }
13
- - { directory: "library" }
14
- - { directory: "filter_plugins" }
+ - templates
+ - files
+ - library
+ - filter_plugins
15
16
- name: Inject templates
17
copy:
@@ -35,7 +35,7 @@
35
36
- ../../resolv_conf/files/NetworkManager-dns-none.conf
37
38
-- name: Inject files
+- name: Inject libraries
39
40
src: '{{ item }}'
41
dest: '/etc/ansible-init/library/{{ item | basename }}'
0 commit comments