ansible-base/roles/mas-for-synapse/tasks/main.json

26 lines
466 B
JSON
Raw Permalink Normal View History

2024-10-13 11:44:01 +02:00
[
{
"name": "configuration | emplace",
"become": true,
"ansible.builtin.template": {
"src": "mas-client-conf.json.j2",
"dest": "/opt/mas/conf.d/clients/synapse.json"
}
},
{
"name": "configuration | apply",
"become": true,
"ansible.builtin.command": {
2024-10-17 18:55:16 +02:00
"cmd": "/usr/local/bin/mas-conf-compose"
2024-10-13 11:44:01 +02:00
}
},
{
"name": "restart service",
"become": true,
"ansible.builtin.systemd_service": {
"state": "restarted",
"name": "mas"
}
}
]