diff options
Diffstat (limited to 'roles/vmm/tasks/autoinstall_configuration.yml')
-rw-r--r-- | roles/vmm/tasks/autoinstall_configuration.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/vmm/tasks/autoinstall_configuration.yml b/roles/vmm/tasks/autoinstall_configuration.yml index 71ceb6d..4901b61 100644 --- a/roles/vmm/tasks/autoinstall_configuration.yml +++ b/roles/vmm/tasks/autoinstall_configuration.yml @@ -8,7 +8,7 @@ path: "{{ vmm_autoinstall_dir }}" owner: www group: www - mode: 0700 + mode: "0700" state: directory - name: generate autoinstall configurations @@ -17,7 +17,7 @@ dest: "{{ vmm_autoinstall_dir }}/{{ item.lladdr }}-install.conf" owner: www group: www - mode: 0640 + mode: "0640" when: item.image == "openbsd" loop: "{{ vmm_vms }}" @@ -50,7 +50,7 @@ dest: "{{ vmm_image_openbsd_kernel_prefix }}.{{ item.name }}" owner: 0 group: 0 - mode: 0600 + mode: "0600" state: hard force: true when: item.image == "openbsd" |