🚨: yamllint conformity
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
ansible.builtin.file:
|
||||
state: directory
|
||||
path: "{{ mastodon_home }}/.ssh"
|
||||
mode: 0755
|
||||
mode: "0o755"
|
||||
owner: mastodon
|
||||
group: mastodon
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
remote_src: true
|
||||
src: /root/.ssh/authorized_keys
|
||||
dest: "{{ mastodon_home }}/.ssh/authorized_keys"
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
owner: mastodon
|
||||
group: mastodon
|
||||
|
||||
|
@@ -44,14 +44,14 @@
|
||||
ansible.builtin.file:
|
||||
path: "{{ mastodon_home }}/bin"
|
||||
state: directory
|
||||
mode: '0750'
|
||||
mode: "0o750"
|
||||
|
||||
- name: Put template scripts
|
||||
remote_user: mastodon
|
||||
ansible.builtin.template:
|
||||
src: "{{ item }}.j2"
|
||||
dest: "{{ mastodon_home }}/bin/{{ item }}"
|
||||
mode: '0750'
|
||||
mode: "0o750"
|
||||
loop:
|
||||
- remove_media.sh
|
||||
- remove_preview_cards.sh
|
||||
@@ -60,7 +60,7 @@
|
||||
ansible.builtin.template:
|
||||
src: "{{ item }}.j2"
|
||||
dest: "/etc/systemd/system/{{ item }}"
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
loop:
|
||||
- "mastodon-sidekiq.service"
|
||||
- "mastodon-streaming.service"
|
||||
|
Reference in New Issue
Block a user