Standardize string quotes in yaml

This commit is contained in:
Jake Howard
2020-03-25 21:27:15 +00:00
parent 35bd63d12b
commit 1afc28ec17
38 changed files with 102 additions and 98 deletions

View File

@ -1,6 +1,6 @@
- name: Create tt-rss directory
file:
path: '/opt/tt-rss'
path: /opt/tt-rss
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
@ -9,7 +9,7 @@
- name: Install tt-rss compose file
template:
src: files/tt-rss/docker-compose.yml
dest: "/opt/tt-rss/docker-compose.yml"
dest: /opt/tt-rss/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
@ -18,7 +18,7 @@
- name: Create tt-rss config directory
file:
path: '/opt/tt-rss/config'
path: /opt/tt-rss/config
state: directory
mode: "{{ docker_compose_directory_mask }}"
become: true
@ -26,7 +26,7 @@
- name: Install tt-rss config
template:
src: files/tt-rss/config.php
dest: "/opt/tt-rss/config/config.php"
dest: /opt/tt-rss/config/config.php
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
register: config_file