10 lines
188 B
YAML
10 lines
188 B
YAML
|
---
|
||
|
- name: Restart synapse
|
||
|
hosts: synapse
|
||
|
|
||
|
tasks:
|
||
|
- name: Restart the synapse server
|
||
|
ansible.builtin.shell:
|
||
|
cmd: env/bin/synctl restart
|
||
|
chdir: $HOME/synapse
|