🚨: yamllint conformity
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
ansible.builtin.file:
|
||||
state: directory
|
||||
path: "{{ peertube_home }}/.ssh"
|
||||
mode: 0755
|
||||
mode: "0o755"
|
||||
owner: peertube
|
||||
group: peertube
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
remote_src: true
|
||||
src: /root/.ssh/authorized_keys
|
||||
dest: "{{ peertube_home }}/.ssh/authorized_keys"
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
owner: peertube
|
||||
group: peertube
|
||||
|
||||
@@ -42,9 +42,9 @@
|
||||
state: directory
|
||||
owner: peertube
|
||||
group: peertube
|
||||
mode: "{{ item.mode | default('0755') }}"
|
||||
mode: "{{ item.mode | default('0o755') }}"
|
||||
loop:
|
||||
- {path: "config", mode: "0750"}
|
||||
- {path: "config", mode: "0o750"}
|
||||
- {path: "storage"}
|
||||
- {path: "versions"}
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
ansible.builtin.template:
|
||||
src: peertube.service.j2
|
||||
dest: /etc/systemd/system/peertube.service
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
|
||||
- name: Install default configuration
|
||||
ansible.builtin.file:
|
||||
|
Reference in New Issue
Block a user