add quotes around octal values
YAML loaders will load them as strings, providing a consistent behavior. This is also safer as JSON does not support octal values either.
This commit is contained in:
@@ -32,5 +32,5 @@
|
||||
dest: /etc/mysql/my.cnf
|
||||
owner: mysql
|
||||
group: mysql
|
||||
mode: 0600
|
||||
mode: "0600"
|
||||
notify: restart mariadb
|
||||
|
||||
@@ -44,5 +44,5 @@
|
||||
dest: /etc/systemd/system/mysqld_exporter.service
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
notify: restart mysqld_exporter
|
||||
|
||||
Reference in New Issue
Block a user