chore: normalize quote style in playbooks
Standardize single quotes to double quotes for consistency. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
ansible.builtin.file:
|
||||
path: /root/restore
|
||||
state: directory
|
||||
mode: '0777'
|
||||
mode: "0777"
|
||||
|
||||
- name: Extract backup.
|
||||
ansible.builtin.unarchive:
|
||||
@@ -56,13 +56,13 @@
|
||||
remote_src: true
|
||||
src: /root/restore/backup/my-app-backup/
|
||||
dest: /root/data/
|
||||
mode: '0777'
|
||||
mode: "0777"
|
||||
|
||||
- name: Update permissions.
|
||||
ansible.builtin.file:
|
||||
path: /root/data
|
||||
recurse: true
|
||||
mode: '0777'
|
||||
mode: "0777"
|
||||
owner: 1000
|
||||
group: 1000
|
||||
|
||||
|
||||
Reference in New Issue
Block a user