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/httpd_pre | |
parent | 83cfb7f2e072e63356acdc6640df849d78741813 (diff) | |
download | rules-9e16f39b59069e752bbd24f5408e39e8ac24ec79.tar.gz |
refactor(roles): force byte conversion by ansible
Diffstat (limited to 'roles/httpd_pre')
-rw-r--r-- | roles/httpd_pre/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/httpd_pre/tasks/main.yml b/roles/httpd_pre/tasks/main.yml index 39cb1c7..acc6673 100644 --- a/roles/httpd_pre/tasks/main.yml +++ b/roles/httpd_pre/tasks/main.yml @@ -6,7 +6,7 @@ state: directory owner: 0 group: 0 - mode: 0644 + mode: "0644" - name: create htpasswd directory ansible.builtin.file: @@ -14,7 +14,7 @@ state: directory owner: "www" group: "www" - mode: 0700 + mode: "0700" - name: mount nfs in chroot ansible.builtin.include_role: |