🚨: yamllint conformity

This commit is contained in:
VC
2024-07-05 11:53:53 +02:00
parent 8ee9a0f8ef
commit 192bf6dfcd
48 changed files with 103 additions and 95 deletions

View File

@@ -20,7 +20,7 @@
ansible.builtin.template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: 0644
mode: "0o644"
notify:
- Restart nginx
loop:

View File

@@ -15,7 +15,7 @@
ansible.builtin.template:
src: "vhosts/{{ item }}.conf.j2"
dest: "/etc/nginx/sites-available/{{ item }}.conf"
mode: 0644
mode: "0o644"
notify:
- Restart nginx
loop: "{{ web_hostname }}"