You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
376 B
YAML
15 lines
376 B
YAML
---
|
|
- name: Restart Jitsi
|
|
block:
|
|
- ansible.builtin.command:
|
|
cmd: "docker compose {{ jitsi_compose_args }} down"
|
|
chdir: "{{ jitsi_install_dir }}"
|
|
|
|
- ansible.builtin.command:
|
|
cmd: "docker compose {{ jitsi_compose_args }} up -d"
|
|
chdir: "{{ jitsi_install_dir }}"
|
|
|
|
- name: Reload systemd
|
|
ansible.builtin.systemd:
|
|
daemon_reload: true
|