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:
Oli
2023-02-19 14:18:09 +00:00
parent 4d1d486512
commit 34f3c54ceb
18 changed files with 39 additions and 39 deletions

View File

@@ -32,5 +32,5 @@
dest: /etc/mysql/my.cnf
owner: mysql
group: mysql
mode: 0600
mode: "0600"
notify: restart mariadb