ansible-collection-famedly-.../tasks/configure.yml

56 lines
1.3 KiB
YAML
Raw Normal View History

2018-07-30 14:56:33 +00:00
---
2019-02-12 01:43:26 +00:00
- name: Generate registration secret
block:
- command: /usr/bin/pwgen -sn 84 1
register: pwgen
2019-02-15 02:07:28 +00:00
delegate_to: localhost
become: false
2019-02-12 01:43:26 +00:00
- set_fact:
matrix_synapse_registration_secret: "{{ pwgen.stdout }}"
when: matrix_synapse_registration_secret is not defined
- name: create user
user:
name: synapse
state: present
register: synapse_user
tags:
- pre_install
- name: create directory
file:
name: /opt/synapse
state: directory
owner: synapse
group: synapse
tags:
- pre_install
2019-02-12 01:43:26 +00:00
- name: Create directory for media storage
file:
name: "{{ item }}"
state: directory
owner: synapse
group: synapse
loop:
- "{{ matrix_synapse_config.media_store_path }}"
- "{{ matrix_synapse_config.uploads_path }}"
- /opt/synapse/tls
2018-07-30 14:56:33 +00:00
- name: Deploy config
copy:
content: "{{ matrix_synapse_config | to_nice_yaml }}"
2018-07-30 14:56:33 +00:00
dest: "/opt/synapse/homeserver.yaml"
owner: synapse
group: synapse
notify:
2019-02-15 02:08:08 +00:00
- "restart matrix-synapse"
2018-07-30 14:56:33 +00:00
- name: Configure logging
import_tasks: logging.yml
when: matrix_synapse_supervision_method == "systemd"
# TODO: Figure out how to make sure that logging ends up in rsyslog no matter what system we run on
2018-07-30 14:56:33 +00:00
2018-12-03 22:29:19 +00:00
- name: Create certificates
2019-02-12 01:38:17 +00:00
include_tasks: crypto.yml