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_site_healthcheck | |
parent | 83cfb7f2e072e63356acdc6640df849d78741813 (diff) | |
download | rules-9e16f39b59069e752bbd24f5408e39e8ac24ec79.tar.gz |
refactor(roles): force byte conversion by ansible
Diffstat (limited to 'roles/httpd_site_healthcheck')
-rw-r--r-- | roles/httpd_site_healthcheck/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/httpd_site_healthcheck/tasks/main.yml b/roles/httpd_site_healthcheck/tasks/main.yml index b955e02..7cb2edb 100644 --- a/roles/httpd_site_healthcheck/tasks/main.yml +++ b/roles/httpd_site_healthcheck/tasks/main.yml @@ -5,7 +5,7 @@ path: "{{ httpd_chroot }}/htdocs/healthcheck" owner: "{{ httpd_user }}" group: "{{ httpd_group }}" - mode: 0550 + mode: "0550" state: directory - name: generate generate httpd healthcheck html index @@ -14,7 +14,7 @@ dest: "{{ httpd_chroot }}/htdocs/healthcheck/index.html" owner: "{{ httpd_user }}" group: "{{ httpd_group }}" - mode: 0440 + mode: "0440" - name: generate httpd healthcheck configuration ansible.builtin.template: @@ -22,4 +22,4 @@ dest: "{{ httpd_configuration_dir }}/healthcheck.conf" owner: 0 group: 0 - mode: 0644 + mode: "0644" |