You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
675 B
22 lines
675 B
---
|
|
|
|
- name: Deploy funkwhale configuration
|
|
template: src=env.j2 dest={{ funkwhale_root_dir }}/config/.env group={{ funkwhale_user }}
|
|
notify: restart funkwhale
|
|
tags: funkwhale
|
|
|
|
- name: Deploy permissions script
|
|
template: src=perms.sh.j2 dest={{ funkwhale_root_dir }}/perms.sh mode=755
|
|
register: funkwhale_perms
|
|
tags: funkwhale
|
|
|
|
- name: Set optimal permissions
|
|
command: "{{ funkwhale_root_dir }}/perms.sh"
|
|
when: funkwhale_install_mode != 'none' or funkwhale_perms.changed
|
|
tags: funkwhale
|
|
|
|
- name: Deploy apache config
|
|
template: src=httpd.conf.j2 dest=/etc/httpd/ansible_conf.d/40-funkwhale_{{ funkwhale_id }}.conf
|
|
notify: reload httpd
|
|
tags: funkwhale
|
|
|
|
|