diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-12-17 18:03:39 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-12-17 18:29:39 +0100 |
commit | 9e16f39b59069e752bbd24f5408e39e8ac24ec79 (patch) | |
tree | 330100ffd054bd274bfe11426aa0ecd7f267d550 /roles/vmm/tasks/autoinstall_configuration.yml | |
parent | 83cfb7f2e072e63356acdc6640df849d78741813 (diff) | |
download | rules-9e16f39b59069e752bbd24f5408e39e8ac24ec79.tar.gz |
refactor(roles): force byte conversion by ansible
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" |