Fix Forbidden implicit octal value from playbooks

This commit is contained in:
Timo Makinen 2023-10-13 12:44:42 +00:00
parent 644fcbe638
commit 317622a01d
11 changed files with 23 additions and 23 deletions

View file

@ -27,7 +27,7 @@
ansible.builtin.copy:
dest: /etc/dhclient.conf
content: "ignore domain-name-servers, domain-name;\n"
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -53,7 +53,7 @@
ansible.builtin.file:
path: /srv/tftpboot/etc
state: directory
mode: 0755
mode: "0755"
owner: root
group: "{{ ansible_wheel }}"
@ -64,7 +64,7 @@
stty com0 115200
set tty com0
boot tftp:bsd.rd
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -73,7 +73,7 @@
url: "https://ftp.eu.openbsd.org/pub/OpenBSD/7.3/amd64/pxeboot"
checksum: sha1:161b36d4ae3d786aa98c4836abba25f2bca8979d
dest: /srv/tftpboot/pxeboot
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -82,7 +82,7 @@
url: "https://ftp.eu.openbsd.org/pub/OpenBSD/7.3/amd64/bsd.rd"
checksum: sha1:72b46ad8e97b2082d145a739264e818dcd154021
dest: /srv/tftpboot/bsd.rd
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -91,7 +91,7 @@
url: "https://boot.foo.sh/openbsd/install.conf"
checksum: sha1:f6270708dad3f759df02eefeab300d9b8670f3d4
dest: /srv/tftpboot/install.conf
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
@ -113,7 +113,7 @@
}
}
}
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
notify: Restart nginx
@ -122,7 +122,7 @@
ansible.builtin.copy:
dest: "{{ tls_private }}/dns.home.foo.sh.key"
src: "{{ item }}"
mode: 0600
mode: "0600"
owner: root
group: "{{ ansible_wheel }}"
with_first_found:
@ -135,7 +135,7 @@
ansible.builtin.copy:
dest: "{{ tls_certs }}/dns.home.foo.sh.crt"
src: "{{ item }}"
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
with_first_found:
@ -148,7 +148,7 @@
ansible.builtin.copy:
dest: "/var/unbound/db/{{ item }}"
src: "/srv/dns/{{ item }}"
mode: 0644
mode: "0644"
owner: root
group: "{{ ansible_wheel }}"
tags: dns