| @@ -96,14 +96,14 @@ | |||||
| - name: Ensure matrix-backup-borg.service installed | - name: Ensure matrix-backup-borg.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-backup-borg.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-backup-borg.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-backup-borg.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-backup-borg.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_backup_borg_systemd_service_result | register: matrix_backup_borg_systemd_service_result | ||||
| - name: Ensure matrix-backup-borg.timer installed | - name: Ensure matrix-backup-borg.timer installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-backup-borg.timer.j2" | src: "{{ role_path }}/templates/systemd/matrix-backup-borg.timer.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-backup-borg.timer" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-backup-borg.timer" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_backup_borg_systemd_timer_result | register: matrix_backup_borg_systemd_timer_result | ||||
| @@ -1,7 +1,7 @@ | |||||
| --- | --- | ||||
| - name: Check existence of matrix-backup-borg service | - name: Check existence of matrix-backup-borg service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-backup-borg.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-backup-borg.service" | |||||
| register: matrix_backup_borg_service_stat | register: matrix_backup_borg_service_stat | ||||
| - name: Ensure matrix-backup-borg is stopped | - name: Ensure matrix-backup-borg is stopped | ||||
| @@ -15,13 +15,13 @@ | |||||
| - name: Ensure matrix-backup-borg.service doesn't exist | - name: Ensure matrix-backup-borg.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-backup-borg.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-backup-borg.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_backup_borg_service_stat.stat.exists | bool" | when: "matrix_backup_borg_service_stat.stat.exists | bool" | ||||
| - name: Ensure matrix-backup-borg.timer doesn't exist | - name: Ensure matrix-backup-borg.timer doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-backup-borg.timer" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-backup-borg.timer" | |||||
| state: absent | state: absent | ||||
| when: "matrix_backup_borg_service_stat.stat.exists | bool" | when: "matrix_backup_borg_service_stat.stat.exists | bool" | ||||
| @@ -113,7 +113,6 @@ matrix_base_data_path: "/matrix" | |||||
| matrix_base_data_path_mode: "750" | matrix_base_data_path_mode: "750" | ||||
| matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files" | matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files" | ||||
| matrix_systemd_path: "/etc/systemd/system" | |||||
| # This is now unused. We keep it so that cleanup tasks can use it. | # This is now unused. We keep it so that cleanup tasks can use it. | ||||
| # To be removed in the future. | # To be removed in the future. | ||||
| @@ -16,9 +16,9 @@ if [ "$sure" != "Yes, I really want to remove everything!" ]; then | |||||
| else | else | ||||
| echo "Stop and remove matrix services" | echo "Stop and remove matrix services" | ||||
| for s in $(find {{ matrix_systemd_path }}/ -type f -name "matrix-*" -printf "%f\n"); do | |||||
| for s in $(find {{ devture_systemd_docker_base_systemd_path }}/ -type f -name "matrix-*" -printf "%f\n"); do | |||||
| systemctl disable --now $s | systemctl disable --now $s | ||||
| rm -f {{ matrix_systemd_path }}/$s | |||||
| rm -f {{ devture_systemd_docker_base_systemd_path }}/$s | |||||
| done | done | ||||
| systemctl daemon-reload | systemctl daemon-reload | ||||
| @@ -87,7 +87,7 @@ | |||||
| - name: Ensure matrix-bot-buscarron.service installed | - name: Ensure matrix-bot-buscarron.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-buscarron.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-buscarron.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-buscarron.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_buscarron_systemd_service_result | register: matrix_bot_buscarron_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-buscarron service | - name: Check existence of matrix-buscarron service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-buscarron.service" | |||||
| register: matrix_bot_buscarron_service_stat | register: matrix_bot_buscarron_service_stat | ||||
| - name: Ensure matrix-buscarron is stopped | - name: Ensure matrix-buscarron is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-buscarron.service doesn't exist | - name: Ensure matrix-bot-buscarron.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-buscarron.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-buscarron.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_buscarron_service_stat.stat.exists | bool" | when: "matrix_bot_buscarron_service_stat.stat.exists | bool" | ||||
| @@ -38,7 +38,7 @@ | |||||
| - name: Ensure matrix-bot-go-neb.service installed | - name: Ensure matrix-bot-go-neb.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-go-neb.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-go-neb.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-go-neb.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-go-neb.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_go_neb_systemd_service_result | register: matrix_bot_go_neb_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-go-neb service | - name: Check existence of matrix-go-neb service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-go-neb.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-go-neb.service" | |||||
| register: matrix_bot_go_neb_service_stat | register: matrix_bot_go_neb_service_stat | ||||
| - name: Ensure matrix-go-neb is stopped | - name: Ensure matrix-go-neb is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-go-neb.service doesn't exist | - name: Ensure matrix-bot-go-neb.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-go-neb.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-go-neb.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_go_neb_service_stat.stat.exists | bool" | when: "matrix_bot_go_neb_service_stat.stat.exists | bool" | ||||
| @@ -87,7 +87,7 @@ | |||||
| - name: Ensure matrix-bot-honoroit.service installed | - name: Ensure matrix-bot-honoroit.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-honoroit.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-honoroit.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-honoroit.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-honoroit.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_honoroit_systemd_service_result | register: matrix_bot_honoroit_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-honoroit service | - name: Check existence of matrix-honoroit service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-honoroit.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-honoroit.service" | |||||
| register: matrix_bot_honoroit_service_stat | register: matrix_bot_honoroit_service_stat | ||||
| - name: Ensure matrix-honoroit is stopped | - name: Ensure matrix-honoroit is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-honoroit.service doesn't exist | - name: Ensure matrix-bot-honoroit.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-honoroit.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-honoroit.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_honoroit_service_stat.stat.exists | bool" | when: "matrix_bot_honoroit_service_stat.stat.exists | bool" | ||||
| @@ -59,7 +59,7 @@ | |||||
| - name: Ensure matrix-bot-matrix-registration-bot.service installed | - name: Ensure matrix-bot-matrix-registration-bot.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-matrix-registration-bot.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-matrix-registration-bot.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-matrix-registration-bot.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-matrix-registration-bot.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_matrix_registration_bot_systemd_service_result | register: matrix_bot_matrix_registration_bot_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-matrix-registration-bot service | - name: Check existence of matrix-matrix-registration-bot service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-matrix-registration-bot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-matrix-registration-bot.service" | |||||
| register: matrix_bot_matrix_registration_bot_service_stat | register: matrix_bot_matrix_registration_bot_service_stat | ||||
| - name: Ensure matrix-matrix-registration-bot is stopped | - name: Ensure matrix-matrix-registration-bot is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-matrix-registration-bot.service doesn't exist | - name: Ensure matrix-bot-matrix-registration-bot.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-matrix-registration-bot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-matrix-registration-bot.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_matrix_registration_bot_service_stat.stat.exists | bool" | when: "matrix_bot_matrix_registration_bot_service_stat.stat.exists | bool" | ||||
| @@ -88,7 +88,7 @@ | |||||
| - name: Ensure matrix-bot-matrix-reminder-bot.service installed | - name: Ensure matrix-bot-matrix-reminder-bot.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-matrix-reminder-bot.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-matrix-reminder-bot.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-matrix-reminder-bot.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-matrix-reminder-bot.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_matrix_reminder_bot_systemd_service_result | register: matrix_bot_matrix_reminder_bot_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-matrix-reminder-bot service | - name: Check existence of matrix-matrix-reminder-bot service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-matrix-reminder-bot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-matrix-reminder-bot.service" | |||||
| register: matrix_bot_matrix_reminder_bot_service_stat | register: matrix_bot_matrix_reminder_bot_service_stat | ||||
| - name: Ensure matrix-matrix-reminder-bot is stopped | - name: Ensure matrix-matrix-reminder-bot is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-matrix-reminder-bot.service doesn't exist | - name: Ensure matrix-bot-matrix-reminder-bot.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-matrix-reminder-bot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-matrix-reminder-bot.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_matrix_reminder_bot_service_stat.stat.exists | bool" | when: "matrix_bot_matrix_reminder_bot_service_stat.stat.exists | bool" | ||||
| @@ -63,7 +63,7 @@ | |||||
| - name: Ensure matrix-bot-maubot.service installed | - name: Ensure matrix-bot-maubot.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-maubot.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-maubot.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-maubot.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-maubot.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_maubot_systemd_service_result | register: matrix_bot_maubot_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-maubot service | - name: Check existence of matrix-maubot service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-maubot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-maubot.service" | |||||
| register: matrix_bot_maubot_service_stat | register: matrix_bot_maubot_service_stat | ||||
| - name: Ensure matrix-bot-maubot is stopped | - name: Ensure matrix-bot-maubot is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-maubot.service doesn't exist | - name: Ensure matrix-bot-maubot.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-maubot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-maubot.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_maubot_service_stat.stat.exists | bool" | when: "matrix_bot_maubot_service_stat.stat.exists | bool" | ||||
| @@ -62,7 +62,7 @@ | |||||
| - name: Ensure matrix-bot-mjolnir.service installed | - name: Ensure matrix-bot-mjolnir.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-mjolnir.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-mjolnir.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-mjolnir.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-mjolnir.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_mjolnir_systemd_service_result | register: matrix_bot_mjolnir_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-bot-mjolnir service | - name: Check existence of matrix-bot-mjolnir service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-mjolnir.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-mjolnir.service" | |||||
| register: matrix_bot_mjolnir_service_stat | register: matrix_bot_mjolnir_service_stat | ||||
| - name: Ensure matrix-bot-mjolnir is stopped | - name: Ensure matrix-bot-mjolnir is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-mjolnir.service doesn't exist | - name: Ensure matrix-bot-mjolnir.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-mjolnir.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-mjolnir.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_mjolnir_service_stat.stat.exists | bool" | when: "matrix_bot_mjolnir_service_stat.stat.exists | bool" | ||||
| @@ -83,7 +83,7 @@ | |||||
| - name: Ensure matrix-bot-postmoogle.service installed | - name: Ensure matrix-bot-postmoogle.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-bot-postmoogle.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-bot-postmoogle.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_bot_postmoogle_systemd_service_result | register: matrix_bot_postmoogle_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-postmoogle service | - name: Check existence of matrix-postmoogle service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| register: matrix_bot_postmoogle_service_stat | register: matrix_bot_postmoogle_service_stat | ||||
| - name: Ensure matrix-postmoogle is stopped | - name: Ensure matrix-postmoogle is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-bot-postmoogle.service doesn't exist | - name: Ensure matrix-bot-postmoogle.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-postmoogle.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_bot_postmoogle_service_stat.stat.exists | bool" | when: "matrix_bot_postmoogle_service_stat.stat.exists | bool" | ||||
| @@ -105,7 +105,7 @@ | |||||
| - name: Ensure matrix-appservice-discord.service installed | - name: Ensure matrix-appservice-discord.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-appservice-discord.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-appservice-discord.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-appservice-discord.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-discord.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_appservice_discord_systemd_service_result | register: matrix_appservice_discord_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-appservice-discord service | - name: Check existence of matrix-appservice-discord service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-discord.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-discord.service" | |||||
| register: matrix_appservice_discord_service_stat | register: matrix_appservice_discord_service_stat | ||||
| - name: Ensure matrix-appservice-discord is stopped | - name: Ensure matrix-appservice-discord is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-appservice-discord.service doesn't exist | - name: Ensure matrix-appservice-discord.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-discord.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-discord.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_appservice_discord_service_stat.stat.exists" | when: "matrix_appservice_discord_service_stat.stat.exists" | ||||
| @@ -30,7 +30,7 @@ | |||||
| - name: Check existence of matrix-appservice-irc service | - name: Check existence of matrix-appservice-irc service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-irc.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-irc.service" | |||||
| register: matrix_appservice_irc_service_stat | register: matrix_appservice_irc_service_stat | ||||
| - name: Ensure matrix-appservice-irc is stopped | - name: Ensure matrix-appservice-irc is stopped | ||||
| @@ -193,7 +193,7 @@ | |||||
| - name: Ensure matrix-appservice-irc.service installed | - name: Ensure matrix-appservice-irc.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-appservice-irc.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-appservice-irc.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-appservice-irc.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-irc.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_appservice_irc_systemd_service_result | register: matrix_appservice_irc_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-appservice-irc service | - name: Check existence of matrix-appservice-irc service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-irc.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-irc.service" | |||||
| register: matrix_appservice_irc_service_stat | register: matrix_appservice_irc_service_stat | ||||
| - name: Ensure matrix-appservice-irc is stopped | - name: Ensure matrix-appservice-irc is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-appservice-irc.service doesn't exist | - name: Ensure matrix-appservice-irc.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-irc.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-irc.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_appservice_irc_service_stat.stat.exists" | when: "matrix_appservice_irc_service_stat.stat.exists" | ||||
| @@ -108,14 +108,14 @@ | |||||
| - name: Ensure matrix-appservice-kakaotalk-node.service installed | - name: Ensure matrix-appservice-kakaotalk-node.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-appservice-kakaotalk-node.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-appservice-kakaotalk-node.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-appservice-kakaotalk-node.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk-node.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_appservice_kakaotalk_node_systemd_service_result | register: matrix_appservice_kakaotalk_node_systemd_service_result | ||||
| - name: Ensure matrix-appservice-kakaotalk.service installed | - name: Ensure matrix-appservice-kakaotalk.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-appservice-kakaotalk.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-appservice-kakaotalk.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-appservice-kakaotalk.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_appservice_kakaotalk_systemd_service_result | register: matrix_appservice_kakaotalk_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-appservice-kakaotalk service | - name: Check existence of matrix-appservice-kakaotalk service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-kakaotalk.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk.service" | |||||
| register: matrix_appservice_kakaotalk_service_stat | register: matrix_appservice_kakaotalk_service_stat | ||||
| - name: Ensure matrix-appservice-kakaotalk is stopped | - name: Ensure matrix-appservice-kakaotalk is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Check existence of matrix-appservice-kakaotalk-node service | - name: Check existence of matrix-appservice-kakaotalk-node service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-kakaotalk-node.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk-node.service" | |||||
| register: matrix_appservice_kakaotalk_node_service_stat | register: matrix_appservice_kakaotalk_node_service_stat | ||||
| - name: Ensure matrix-appservice-kakaotalk-node is stopped | - name: Ensure matrix-appservice-kakaotalk-node is stopped | ||||
| @@ -31,8 +31,8 @@ | |||||
| path: "{{ item }}" | path: "{{ item }}" | ||||
| state: absent | state: absent | ||||
| with_items: | with_items: | ||||
| - "{{ matrix_systemd_path }}/matrix-appservice-kakaotalk-node.service" | |||||
| - "{{ matrix_systemd_path }}/matrix-appservice-kakaotalk.service" | |||||
| - "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk-node.service" | |||||
| - "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-kakaotalk.service" | |||||
| when: "matrix_appservice_kakaotalk_service_stat.stat.exists" | when: "matrix_appservice_kakaotalk_service_stat.stat.exists" | ||||
| - name: Ensure systemd reloaded after matrix-appservice-kakaotalk service files removal | - name: Ensure systemd reloaded after matrix-appservice-kakaotalk service files removal | ||||
| @@ -85,7 +85,7 @@ | |||||
| - name: Ensure matrix-appservice-slack.service installed | - name: Ensure matrix-appservice-slack.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-appservice-slack.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-appservice-slack.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-appservice-slack.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-slack.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_appservice_slack_systemd_service_result | register: matrix_appservice_slack_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-appservice-slack service | - name: Check existence of matrix-appservice-slack service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-slack.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-slack.service" | |||||
| register: matrix_appservice_slack_service_stat | register: matrix_appservice_slack_service_stat | ||||
| - name: Ensure matrix-appservice-slack is stopped | - name: Ensure matrix-appservice-slack is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-appservice-slack.service doesn't exist | - name: Ensure matrix-appservice-slack.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-slack.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-slack.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_appservice_slack_service_stat.stat.exists" | when: "matrix_appservice_slack_service_stat.stat.exists" | ||||
| @@ -84,7 +84,7 @@ | |||||
| - name: Ensure matrix-appservice-webhooks.service installed | - name: Ensure matrix-appservice-webhooks.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-appservice-webhooks.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-appservice-webhooks.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-appservice-webhooks.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-webhooks.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_appservice_webhooks_systemd_service_result | register: matrix_appservice_webhooks_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-appservice-webhooks service | - name: Check existence of matrix-appservice-webhooks service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-webhooks.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-webhooks.service" | |||||
| register: matrix_appservice_webhooks_service_stat | register: matrix_appservice_webhooks_service_stat | ||||
| - name: Ensure matrix-appservice-webhooks is stopped | - name: Ensure matrix-appservice-webhooks is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-appservice-webhooks.service doesn't exist | - name: Ensure matrix-appservice-webhooks.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-appservice-webhooks.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-appservice-webhooks.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_appservice_webhooks_service_stat.stat.exists" | when: "matrix_appservice_webhooks_service_stat.stat.exists" | ||||
| @@ -93,7 +93,7 @@ | |||||
| - name: Ensure matrix-beeper-linkedin.service installed | - name: Ensure matrix-beeper-linkedin.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-beeper-linkedin.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-beeper-linkedin.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-beeper-linkedin.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-beeper-linkedin.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_beeper_linkedin_systemd_service_result | register: matrix_beeper_linkedin_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-beeper-linkedin service | - name: Check existence of matrix-beeper-linkedin service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-beeper-linkedin.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-beeper-linkedin.service" | |||||
| register: matrix_beeper_linkedin_service_stat | register: matrix_beeper_linkedin_service_stat | ||||
| - name: Ensure matrix-beeper-linkedin is stopped | - name: Ensure matrix-beeper-linkedin is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-beeper-linkedin.service doesn't exist | - name: Ensure matrix-beeper-linkedin.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-beeper-linkedin.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-beeper-linkedin.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_beeper_linkedin_service_stat.stat.exists" | when: "matrix_beeper_linkedin_service_stat.stat.exists" | ||||
| @@ -132,7 +132,7 @@ | |||||
| - name: Ensure matrix-go-skype-bridge.service installed | - name: Ensure matrix-go-skype-bridge.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-go-skype-bridge.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-go-skype-bridge.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-go-skype-bridge.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-go-skype-bridge.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_go_skype_bridge_systemd_service_result | register: matrix_go_skype_bridge_systemd_service_result | ||||
| @@ -32,7 +32,7 @@ | |||||
| - name: Ensure matrix-heisenbridge.service installed | - name: Ensure matrix-heisenbridge.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-heisenbridge.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-heisenbridge.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-heisenbridge.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-heisenbridge.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_heisenbridge_systemd_service_result | register: matrix_heisenbridge_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-heisenbridge service | - name: Check existence of matrix-heisenbridge service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-heisenbridge.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-heisenbridge.service" | |||||
| register: matrix_heisenbridge_service_stat | register: matrix_heisenbridge_service_stat | ||||
| - name: Ensure matrix-heisenbridge is stopped | - name: Ensure matrix-heisenbridge is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-heisenbridge.service doesn't exist | - name: Ensure matrix-heisenbridge.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-heisenbridge.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-heisenbridge.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_heisenbridge_service_stat.stat.exists" | when: "matrix_heisenbridge_service_stat.stat.exists" | ||||
| @@ -106,7 +106,7 @@ | |||||
| - name: Ensure matrix-hookshot.service installed | - name: Ensure matrix-hookshot.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-hookshot.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-hookshot.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-hookshot.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-hookshot.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_hookshot_systemd_service_result | register: matrix_hookshot_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-hookshot service | - name: Check existence of matrix-hookshot service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-hookshot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-hookshot.service" | |||||
| register: matrix_hookshot_service_stat | register: matrix_hookshot_service_stat | ||||
| - name: Ensure matrix-hookshot is stopped | - name: Ensure matrix-hookshot is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-hookshot.service doesn't exist | - name: Ensure matrix-hookshot.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-hookshot.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-hookshot.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_hookshot_service_stat.stat.exists" | when: "matrix_hookshot_service_stat.stat.exists" | ||||
| @@ -105,7 +105,7 @@ | |||||
| - name: Ensure matrix-mautrix-discord.service installed | - name: Ensure matrix-mautrix-discord.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-discord.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-discord.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-discord.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-discord.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_discord_systemd_service_result | register: matrix_mautrix_discord_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-mautrix-discord service | - name: Check existence of matrix-mautrix-discord service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-discord.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-discord.service" | |||||
| register: matrix_mautrix_discord_service_stat | register: matrix_mautrix_discord_service_stat | ||||
| - name: Ensure matrix-mautrix-discord is stopped | - name: Ensure matrix-mautrix-discord is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-mautrix-discord.service doesn't exist | - name: Ensure matrix-mautrix-discord.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-discord.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-discord.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_discord_service_stat.stat.exists" | when: "matrix_mautrix_discord_service_stat.stat.exists" | ||||
| @@ -122,7 +122,7 @@ | |||||
| - name: Ensure matrix-mautrix-facebook.service installed | - name: Ensure matrix-mautrix-facebook.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-facebook.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-facebook.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-facebook.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-facebook.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_facebook_systemd_service_result | register: matrix_mautrix_facebook_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-mautrix-facebook service | - name: Check existence of matrix-mautrix-facebook service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-facebook.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-facebook.service" | |||||
| register: matrix_mautrix_facebook_service_stat | register: matrix_mautrix_facebook_service_stat | ||||
| - name: Ensure matrix-mautrix-facebook is stopped | - name: Ensure matrix-mautrix-facebook is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-mautrix-facebook.service doesn't exist | - name: Ensure matrix-mautrix-facebook.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-facebook.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-facebook.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_facebook_service_stat.stat.exists" | when: "matrix_mautrix_facebook_service_stat.stat.exists" | ||||
| @@ -122,7 +122,7 @@ | |||||
| - name: Ensure matrix-mautrix-googlechat.service installed | - name: Ensure matrix-mautrix-googlechat.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-googlechat.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-googlechat.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-googlechat.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-googlechat.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_googlechat_systemd_service_result | register: matrix_mautrix_googlechat_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-mautrix-googlechat service | - name: Check existence of matrix-mautrix-googlechat service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-googlechat.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-googlechat.service" | |||||
| register: matrix_mautrix_googlechat_service_stat | register: matrix_mautrix_googlechat_service_stat | ||||
| - name: Ensure matrix-mautrix-googlechat is stopped | - name: Ensure matrix-mautrix-googlechat is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-mautrix-googlechat.service doesn't exist | - name: Ensure matrix-mautrix-googlechat.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-googlechat.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-googlechat.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_googlechat_service_stat.stat.exists" | when: "matrix_mautrix_googlechat_service_stat.stat.exists" | ||||
| @@ -122,7 +122,7 @@ | |||||
| - name: Ensure matrix-mautrix-hangouts.service installed | - name: Ensure matrix-mautrix-hangouts.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-hangouts.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-hangouts.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-hangouts.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-hangouts.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_hangouts_systemd_service_result | register: matrix_mautrix_hangouts_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-mautrix-hangouts service | - name: Check existence of matrix-mautrix-hangouts service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-hangouts.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-hangouts.service" | |||||
| register: matrix_mautrix_hangouts_service_stat | register: matrix_mautrix_hangouts_service_stat | ||||
| - name: Ensure matrix-mautrix-hangouts is stopped | - name: Ensure matrix-mautrix-hangouts is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-mautrix-hangouts.service doesn't exist | - name: Ensure matrix-mautrix-hangouts.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-hangouts.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-hangouts.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_hangouts_service_stat.stat.exists" | when: "matrix_mautrix_hangouts_service_stat.stat.exists" | ||||
| @@ -75,7 +75,7 @@ | |||||
| - name: Ensure matrix-mautrix-instagram.service installed | - name: Ensure matrix-mautrix-instagram.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-instagram.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-instagram.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-instagram.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-instagram.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_instagram_systemd_service_result | register: matrix_mautrix_instagram_systemd_service_result | ||||
| @@ -1,7 +1,7 @@ | |||||
| --- | --- | ||||
| - name: Check existence of matrix-mautrix-instagram service | - name: Check existence of matrix-mautrix-instagram service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-instagram.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-instagram.service" | |||||
| register: matrix_mautrix_instagram_service_stat | register: matrix_mautrix_instagram_service_stat | ||||
| - name: Ensure matrix-mautrix-instagram is stopped | - name: Ensure matrix-mautrix-instagram is stopped | ||||
| @@ -14,7 +14,7 @@ | |||||
| - name: Ensure matrix-mautrix-instagram.service doesn't exist | - name: Ensure matrix-mautrix-instagram.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-instagram.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-instagram.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_instagram_service_stat.stat.exists" | when: "matrix_mautrix_instagram_service_stat.stat.exists" | ||||
| @@ -120,14 +120,14 @@ | |||||
| - name: Ensure matrix-mautrix-signal-daemon.service installed | - name: Ensure matrix-mautrix-signal-daemon.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-signal-daemon.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-signal-daemon.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-signal-daemon.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-signal-daemon.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_signal_daemon_systemd_service_result | register: matrix_mautrix_signal_daemon_systemd_service_result | ||||
| - name: Ensure matrix-mautrix-signal.service installed | - name: Ensure matrix-mautrix-signal.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-signal.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-signal.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-signal.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-signal.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_signal_systemd_service_result | register: matrix_mautrix_signal_systemd_service_result | ||||
| @@ -3,7 +3,7 @@ | |||||
| # Signal daemon service | # Signal daemon service | ||||
| - name: Check existence of matrix-mautrix-signal-daemon service | - name: Check existence of matrix-mautrix-signal-daemon service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-signal-daemon.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-signal-daemon.service" | |||||
| register: matrix_mautrix_signal_daemon_service_stat | register: matrix_mautrix_signal_daemon_service_stat | ||||
| - name: Ensure matrix-mautrix-signal-daemon is stopped | - name: Ensure matrix-mautrix-signal-daemon is stopped | ||||
| @@ -16,14 +16,14 @@ | |||||
| - name: Ensure matrix-mautrix-signal-daemon.service doesn't exist | - name: Ensure matrix-mautrix-signal-daemon.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-signal-daemon.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-signal-daemon.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_signal_daemon_service_stat.stat.exists" | when: "matrix_mautrix_signal_daemon_service_stat.stat.exists" | ||||
| # Bridge service | # Bridge service | ||||
| - name: Check existence of matrix-mautrix-signal service | - name: Check existence of matrix-mautrix-signal service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-signal.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-signal.service" | |||||
| register: matrix_mautrix_signal_service_stat | register: matrix_mautrix_signal_service_stat | ||||
| - name: Ensure matrix-mautrix-signal is stopped | - name: Ensure matrix-mautrix-signal is stopped | ||||
| @@ -36,7 +36,7 @@ | |||||
| - name: Ensure matrix-mautrix-signal.service doesn't exist | - name: Ensure matrix-mautrix-signal.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-signal.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-signal.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_signal_service_stat.stat.exists" | when: "matrix_mautrix_signal_service_stat.stat.exists" | ||||
| @@ -147,7 +147,7 @@ | |||||
| - name: Ensure matrix-mautrix-telegram.service installed | - name: Ensure matrix-mautrix-telegram.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-telegram.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-telegram.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-telegram.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-telegram.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_telegram_systemd_service_result | register: matrix_mautrix_telegram_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-mautrix-telegram service | - name: Check existence of matrix-mautrix-telegram service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-telegram.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-telegram.service" | |||||
| register: matrix_mautrix_telegram_service_stat | register: matrix_mautrix_telegram_service_stat | ||||
| - name: Ensure matrix-mautrix-telegram is stopped | - name: Ensure matrix-mautrix-telegram is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-mautrix-telegram.service doesn't exist | - name: Ensure matrix-mautrix-telegram.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-telegram.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-telegram.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_telegram_service_stat.stat.exists" | when: "matrix_mautrix_telegram_service_stat.stat.exists" | ||||
| @@ -78,7 +78,7 @@ | |||||
| - name: Ensure matrix-mautrix-twitter.service installed | - name: Ensure matrix-mautrix-twitter.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-twitter.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-twitter.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-twitter.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-twitter.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_twitter_systemd_service_result | register: matrix_mautrix_twitter_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-mautrix-twitter service | - name: Check existence of matrix-mautrix-twitter service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-twitter.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-twitter.service" | |||||
| register: matrix_mautrix_twitter_service_stat | register: matrix_mautrix_twitter_service_stat | ||||
| - name: Ensure matrix-mautrix-twitter is stopped | - name: Ensure matrix-mautrix-twitter is stopped | ||||
| @@ -14,7 +14,7 @@ | |||||
| - name: Ensure matrix-mautrix-twitter.service doesn't exist | - name: Ensure matrix-mautrix-twitter.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-twitter.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-twitter.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_twitter_service_stat.stat.exists" | when: "matrix_mautrix_twitter_service_stat.stat.exists" | ||||
| @@ -132,7 +132,7 @@ | |||||
| - name: Ensure matrix-mautrix-whatsapp.service installed | - name: Ensure matrix-mautrix-whatsapp.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mautrix-whatsapp.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mautrix-whatsapp.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mautrix-whatsapp.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-whatsapp.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mautrix_whatsapp_systemd_service_result | register: matrix_mautrix_whatsapp_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-mautrix-whatsapp service | - name: Check existence of matrix-mautrix-whatsapp service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-whatsapp.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-whatsapp.service" | |||||
| register: matrix_mautrix_whatsapp_service_stat | register: matrix_mautrix_whatsapp_service_stat | ||||
| - name: Ensure matrix-mautrix-whatsapp is stopped | - name: Ensure matrix-mautrix-whatsapp is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-mautrix-whatsapp.service doesn't exist | - name: Ensure matrix-mautrix-whatsapp.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mautrix-whatsapp.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mautrix-whatsapp.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mautrix_whatsapp_service_stat.stat.exists" | when: "matrix_mautrix_whatsapp_service_stat.stat.exists" | ||||
| @@ -49,7 +49,7 @@ | |||||
| - name: Ensure matrix-sms-bridge.service installed | - name: Ensure matrix-sms-bridge.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-sms-bridge.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-sms-bridge.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-sms-bridge.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-sms-bridge.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_sms_bridge_systemd_service_result | register: matrix_sms_bridge_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-sms-bridge service | - name: Check existence of matrix-sms-bridge service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-sms-bridge.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-sms-bridge.service" | |||||
| register: matrix_sms_bridge_service_stat | register: matrix_sms_bridge_service_stat | ||||
| - name: Ensure matrix-sms-bridge is stopped | - name: Ensure matrix-sms-bridge is stopped | ||||
| @@ -15,6 +15,6 @@ | |||||
| - name: Ensure matrix-sms-bridge.service doesn't exist | - name: Ensure matrix-sms-bridge.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-sms-bridge.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-sms-bridge.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_sms_bridge_service_stat.stat.exists" | when: "matrix_sms_bridge_service_stat.stat.exists" | ||||
| @@ -123,7 +123,7 @@ | |||||
| - name: Ensure matrix-cactus-comments.service installed | - name: Ensure matrix-cactus-comments.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-cactus-comments.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-cactus-comments.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-cactus-comments.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-cactus-comments.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_cactus_comments_systemd_service_result | register: matrix_cactus_comments_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-cactus-comments service | - name: Check existence of matrix-cactus-comments service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-cactus-comments.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-cactus-comments.service" | |||||
| register: matrix_cactus_comments_service_stat | register: matrix_cactus_comments_service_stat | ||||
| - name: Ensure cactus comments is stopped | - name: Ensure cactus comments is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-cactus-comments.service doesn't exist | - name: Ensure matrix-cactus-comments.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-cactus-comments.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-cactus-comments.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_cactus_comments_service_stat.stat.exists | bool" | when: "matrix_cactus_comments_service_stat.stat.exists | bool" | ||||
| @@ -67,7 +67,7 @@ | |||||
| - name: Ensure matrix-client-cinny.service installed | - name: Ensure matrix-client-cinny.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-client-cinny.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-client-cinny.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-client-cinny.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-cinny.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_client_cinny_systemd_service_result | register: matrix_client_cinny_systemd_service_result | ||||
| @@ -1,7 +1,7 @@ | |||||
| --- | --- | ||||
| - name: Check existence of matrix-client-cinny.service | - name: Check existence of matrix-client-cinny.service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-client-cinny.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-cinny.service" | |||||
| register: matrix_client_cinny_service_stat | register: matrix_client_cinny_service_stat | ||||
| - name: Ensure matrix-client-cinny is stopped | - name: Ensure matrix-client-cinny is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-client-cinny.service doesn't exist | - name: Ensure matrix-client-cinny.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-client-cinny.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-cinny.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_client_cinny_service_stat.stat.exists | bool" | when: "matrix_client_cinny_service_stat.stat.exists | bool" | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-riot-web.service | - name: Check existence of matrix-riot-web.service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-riot-web.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-riot-web.service" | |||||
| register: matrix_client_riot_web_service_stat | register: matrix_client_riot_web_service_stat | ||||
| when: "matrix_client_element_enabled | bool" | when: "matrix_client_element_enabled | bool" | ||||
| @@ -17,7 +17,7 @@ | |||||
| - name: Ensure matrix-riot-web.service doesn't exist | - name: Ensure matrix-riot-web.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-riot-web.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-riot-web.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_client_element_enabled | bool and matrix_client_riot_web_service_stat.stat.exists" | when: "matrix_client_element_enabled | bool and matrix_client_riot_web_service_stat.stat.exists" | ||||
| @@ -93,7 +93,7 @@ | |||||
| - name: Ensure matrix-client-element.service installed | - name: Ensure matrix-client-element.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-client-element.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-client-element.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-client-element.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-element.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_client_element_systemd_service_result | register: matrix_client_element_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-client-element.service | - name: Check existence of matrix-client-element.service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-client-element.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-element.service" | |||||
| register: matrix_client_element_service_stat | register: matrix_client_element_service_stat | ||||
| - name: Ensure matrix-client-element is stopped | - name: Ensure matrix-client-element is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-client-element.service doesn't exist | - name: Ensure matrix-client-element.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-client-element.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-element.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_client_element_service_stat.stat.exists | bool" | when: "matrix_client_element_service_stat.stat.exists | bool" | ||||
| @@ -71,7 +71,7 @@ | |||||
| - name: Ensure matrix-client-hydrogen.service installed | - name: Ensure matrix-client-hydrogen.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-client-hydrogen.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-client-hydrogen.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-client-hydrogen.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-hydrogen.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_client_hydrogen_systemd_service_result | register: matrix_client_hydrogen_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-client-hydrogen.service | - name: Check existence of matrix-client-hydrogen.service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-client-hydrogen.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-hydrogen.service" | |||||
| register: matrix_client_hydrogen_service_stat | register: matrix_client_hydrogen_service_stat | ||||
| - name: Ensure matrix-client-hydrogen is stopped | - name: Ensure matrix-client-hydrogen is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-client-hydrogen.service doesn't exist | - name: Ensure matrix-client-hydrogen.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-client-hydrogen.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-client-hydrogen.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_client_hydrogen_service_stat.stat.exists | bool" | when: "matrix_client_hydrogen_service_stat.stat.exists | bool" | ||||
| @@ -37,7 +37,7 @@ | |||||
| - name: Ensure matrix-conduit.service installed | - name: Ensure matrix-conduit.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/conduit/systemd/matrix-conduit.service.j2" | src: "{{ role_path }}/templates/conduit/systemd/matrix-conduit.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-conduit.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-conduit.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_conduit_systemd_service_result | register: matrix_conduit_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-conduit service | - name: Check existence of matrix-conduit service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-conduit.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-conduit.service" | |||||
| register: matrix_conduit_service_stat | register: matrix_conduit_service_stat | ||||
| - name: Ensure matrix-conduit is stopped | - name: Ensure matrix-conduit is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-conduit.service doesn't exist | - name: Ensure matrix-conduit.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-conduit.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-conduit.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_conduit_service_stat.stat.exists" | when: "matrix_conduit_service_stat.stat.exists" | ||||
| @@ -64,7 +64,7 @@ | |||||
| - name: Ensure matrix-corporal.service installed | - name: Ensure matrix-corporal.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-corporal.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-corporal.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-corporal.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-corporal.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_corporal_systemd_service_result | register: matrix_corporal_systemd_service_result | ||||
| when: matrix_corporal_enabled | bool | when: matrix_corporal_enabled | bool | ||||
| @@ -81,7 +81,7 @@ | |||||
| - name: Check existence of matrix-corporal service | - name: Check existence of matrix-corporal service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-corporal.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-corporal.service" | |||||
| register: matrix_corporal_service_stat | register: matrix_corporal_service_stat | ||||
| when: "not matrix_corporal_enabled | bool" | when: "not matrix_corporal_enabled | bool" | ||||
| @@ -96,7 +96,7 @@ | |||||
| - name: Ensure matrix-corporal.service doesn't exist | - name: Ensure matrix-corporal.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-corporal.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-corporal.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_corporal_enabled | bool and matrix_corporal_service_stat.stat.exists" | when: "not matrix_corporal_enabled | bool and matrix_corporal_service_stat.stat.exists" | ||||
| @@ -110,7 +110,7 @@ | |||||
| path: "{{ item }}" | path: "{{ item }}" | ||||
| state: absent | state: absent | ||||
| with_items: | with_items: | ||||
| - "{{ matrix_systemd_path }}/matrix-corporal.service" | |||||
| - "{{ devture_systemd_docker_base_systemd_path }}/matrix-corporal.service" | |||||
| - "{{ matrix_corporal_config_dir_path }}/config.json" | - "{{ matrix_corporal_config_dir_path }}/config.json" | ||||
| when: "not matrix_corporal_enabled | bool" | when: "not matrix_corporal_enabled | bool" | ||||
| @@ -76,7 +76,7 @@ | |||||
| - name: Ensure matrix-coturn.service installed | - name: Ensure matrix-coturn.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-coturn.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-coturn.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-coturn.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-coturn.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_coturn_systemd_service_change_results | register: matrix_coturn_systemd_service_change_results | ||||
| @@ -86,7 +86,7 @@ | |||||
| - name: Ensure reloading systemd units installed, if necessary | - name: Ensure reloading systemd units installed, if necessary | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/{{ item }}.j2" | src: "{{ role_path }}/templates/systemd/{{ item }}.j2" | ||||
| dest: "{{ matrix_systemd_path }}/{{ item }}" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: "matrix_coturn_systemd_service_change_results" | register: "matrix_coturn_systemd_service_change_results" | ||||
| when: "matrix_coturn_tls_enabled | bool" | when: "matrix_coturn_tls_enabled | bool" | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-coturn service | - name: Check existence of matrix-coturn service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-coturn.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-coturn.service" | |||||
| register: matrix_coturn_service_stat | register: matrix_coturn_service_stat | ||||
| when: "not matrix_coturn_enabled | bool" | when: "not matrix_coturn_enabled | bool" | ||||
| @@ -25,7 +25,7 @@ | |||||
| - name: Ensure systemd units don't exist | - name: Ensure systemd units don't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/{{ item }}" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}" | |||||
| state: absent | state: absent | ||||
| register: matrix_coturn_systemd_unit_uninstallation_result | register: matrix_coturn_systemd_unit_uninstallation_result | ||||
| with_items: | with_items: | ||||
| @@ -65,7 +65,7 @@ | |||||
| - name: Ensure matrix-dendrite.service installed | - name: Ensure matrix-dendrite.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/dendrite/systemd/matrix-dendrite.service.j2" | src: "{{ role_path }}/templates/dendrite/systemd/matrix-dendrite.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-dendrite.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dendrite.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_dendrite_systemd_service_result | register: matrix_dendrite_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-dendrite service | - name: Check existence of matrix-dendrite service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-dendrite.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dendrite.service" | |||||
| register: matrix_dendrite_service_stat | register: matrix_dendrite_service_stat | ||||
| - name: Ensure matrix-dendrite is stopped | - name: Ensure matrix-dendrite is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-dendrite.service doesn't exist | - name: Ensure matrix-dendrite.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-dendrite.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dendrite.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_dendrite_service_stat.stat.exists" | when: "matrix_dendrite_service_stat.stat.exists" | ||||
| @@ -124,7 +124,7 @@ | |||||
| - name: Ensure matrix-dimension.service installed | - name: Ensure matrix-dimension.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-dimension.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-dimension.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-dimension.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dimension.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_dimension_systemd_service_result | register: matrix_dimension_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-dimension service | - name: Check existence of matrix-dimension service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-dimension.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dimension.service" | |||||
| register: matrix_dimension_service_stat | register: matrix_dimension_service_stat | ||||
| - name: Ensure matrix-dimension is stopped | - name: Ensure matrix-dimension is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-dimension.service doesn't exist | - name: Ensure matrix-dimension.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-dimension.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dimension.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_dimension_service_stat.stat.exists | bool" | when: "matrix_dimension_service_stat.stat.exists | bool" | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-dynamic-dns service | - name: Check existence of matrix-dynamic-dns service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-dynamic-dns.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dynamic-dns.service" | |||||
| register: matrix_dynamic_dns_service_stat | register: matrix_dynamic_dns_service_stat | ||||
| - name: Ensure matrix-dynamic-dns is stopped | - name: Ensure matrix-dynamic-dns is stopped | ||||
| @@ -15,7 +15,7 @@ | |||||
| - name: Ensure matrix-dynamic-dns.service doesn't exist | - name: Ensure matrix-dynamic-dns.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-dynamic-dns.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-dynamic-dns.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_dynamic_dns_service_stat.stat.exists" | when: "matrix_dynamic_dns_service_stat.stat.exists" | ||||
| @@ -59,7 +59,7 @@ | |||||
| - name: Ensure matrix-email2matrix.service installed | - name: Ensure matrix-email2matrix.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-email2matrix.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-email2matrix.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-email2matrix.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-email2matrix.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_email2matrix_systemd_service_result | register: matrix_email2matrix_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-email2matrix service | - name: Check existence of matrix-email2matrix service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-email2matrix.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-email2matrix.service" | |||||
| register: matrix_email2matrix_service_stat | register: matrix_email2matrix_service_stat | ||||
| - name: Ensure matrix-email2matrix is stopped | - name: Ensure matrix-email2matrix is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-email2matrix.service doesn't exist | - name: Ensure matrix-email2matrix.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-email2matrix.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-email2matrix.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_email2matrix_service_stat.stat.exists | bool" | when: "matrix_email2matrix_service_stat.stat.exists | bool" | ||||
| @@ -30,7 +30,7 @@ | |||||
| - name: Ensure matrix-etherpad.service installed | - name: Ensure matrix-etherpad.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-etherpad.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-etherpad.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-etherpad.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-etherpad.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_etherpad_systemd_service_result | register: matrix_etherpad_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-etherpad service | - name: Check existence of matrix-etherpad service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-etherpad.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-etherpad.service" | |||||
| register: matrix_etherpad_service_stat | register: matrix_etherpad_service_stat | ||||
| - name: Ensure matrix-etherpad is stopped | - name: Ensure matrix-etherpad is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-etherpad.service doesn't exist | - name: Ensure matrix-etherpad.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-etherpad.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-etherpad.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_etherpad_service_stat.stat.exists | bool" | when: "matrix_etherpad_service_stat.stat.exists | bool" | ||||
| @@ -78,7 +78,7 @@ | |||||
| - name: Ensure matrix-grafana.service installed | - name: Ensure matrix-grafana.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-grafana.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-grafana.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-grafana.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-grafana.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_grafana_systemd_service_result | register: matrix_grafana_systemd_service_result | ||||
| when: matrix_grafana_enabled | bool | when: matrix_grafana_enabled | bool | ||||
| @@ -94,7 +94,7 @@ | |||||
| - name: Check existence of matrix-grafana service | - name: Check existence of matrix-grafana service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-grafana.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-grafana.service" | |||||
| register: matrix_grafana_service_stat | register: matrix_grafana_service_stat | ||||
| - name: Ensure matrix-grafana is stopped | - name: Ensure matrix-grafana is stopped | ||||
| @@ -108,7 +108,7 @@ | |||||
| - name: Ensure matrix-grafana.service doesn't exist | - name: Ensure matrix-grafana.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-grafana.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-grafana.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_grafana_enabled | bool and matrix_grafana_service_stat.stat.exists" | when: "not matrix_grafana_enabled | bool and matrix_grafana_service_stat.stat.exists" | ||||
| @@ -52,7 +52,7 @@ | |||||
| - name: Ensure matrix-jitsi-jicofo.service installed | - name: Ensure matrix-jitsi-jicofo.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/jicofo/matrix-jitsi-jicofo.service.j2" | src: "{{ role_path }}/templates/jicofo/matrix-jitsi-jicofo.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-jitsi-jicofo.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-jicofo.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_jitsi_jicofo_systemd_service_result | register: matrix_jitsi_jicofo_systemd_service_result | ||||
| when: matrix_jitsi_enabled | bool | when: matrix_jitsi_enabled | bool | ||||
| @@ -68,7 +68,7 @@ | |||||
| - name: Check existence of matrix-jitsi-jicofo service | - name: Check existence of matrix-jitsi-jicofo service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-jicofo.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-jicofo.service" | |||||
| register: matrix_jitsi_jicofo_service_stat | register: matrix_jitsi_jicofo_service_stat | ||||
| when: "not matrix_jitsi_enabled | bool" | when: "not matrix_jitsi_enabled | bool" | ||||
| @@ -83,7 +83,7 @@ | |||||
| - name: Ensure matrix-jitsi-jicofo.service doesn't exist | - name: Ensure matrix-jitsi-jicofo.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-jicofo.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-jicofo.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_jitsi_enabled | bool and matrix_jitsi_jicofo_service_stat.stat.exists" | when: "not matrix_jitsi_enabled | bool and matrix_jitsi_jicofo_service_stat.stat.exists" | ||||
| @@ -52,7 +52,7 @@ | |||||
| - name: Ensure matrix-jitsi-jvb.service installed | - name: Ensure matrix-jitsi-jvb.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/jvb/matrix-jitsi-jvb.service.j2" | src: "{{ role_path }}/templates/jvb/matrix-jitsi-jvb.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-jitsi-jvb.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-jvb.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_jitsi_jvb_systemd_service_result | register: matrix_jitsi_jvb_systemd_service_result | ||||
| when: matrix_jitsi_enabled | bool | when: matrix_jitsi_enabled | bool | ||||
| @@ -68,7 +68,7 @@ | |||||
| - name: Check existence of matrix-jitsi-jvb service | - name: Check existence of matrix-jitsi-jvb service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-jvb.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-jvb.service" | |||||
| register: matrix_jitsi_jvb_service_stat | register: matrix_jitsi_jvb_service_stat | ||||
| when: "not matrix_jitsi_enabled | bool" | when: "not matrix_jitsi_enabled | bool" | ||||
| @@ -83,7 +83,7 @@ | |||||
| - name: Ensure matrix-jitsi-jvb.service doesn't exist | - name: Ensure matrix-jitsi-jvb.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-jvb.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-jvb.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_jitsi_enabled | bool and matrix_jitsi_jvb_service_stat.stat.exists" | when: "not matrix_jitsi_enabled | bool and matrix_jitsi_jvb_service_stat.stat.exists" | ||||
| @@ -41,7 +41,7 @@ | |||||
| - name: Ensure matrix-jitsi-prosody.service file is installed | - name: Ensure matrix-jitsi-prosody.service file is installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/prosody/matrix-jitsi-prosody.service.j2" | src: "{{ role_path }}/templates/prosody/matrix-jitsi-prosody.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-prosody.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_jitsi_prosody_systemd_service_result | register: matrix_jitsi_prosody_systemd_service_result | ||||
| when: matrix_jitsi_enabled | bool | when: matrix_jitsi_enabled | bool | ||||
| @@ -65,7 +65,7 @@ | |||||
| - name: Ensure matrix-jitsi-prosody.service file exists | - name: Ensure matrix-jitsi-prosody.service file exists | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-prosody.service" | |||||
| register: matrix_jitsi_prosody_service_stat | register: matrix_jitsi_prosody_service_stat | ||||
| when: "not matrix_jitsi_enabled | bool" | when: "not matrix_jitsi_enabled | bool" | ||||
| @@ -80,7 +80,7 @@ | |||||
| - name: Ensure matrix-jitsi-prosody.service file doesn't exist | - name: Ensure matrix-jitsi-prosody.service file doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-prosody.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_jitsi_enabled | bool and matrix_jitsi_prosody_service_stat.stat.exists" | when: "not matrix_jitsi_enabled | bool and matrix_jitsi_prosody_service_stat.stat.exists" | ||||
| @@ -54,7 +54,7 @@ | |||||
| - name: Ensure matrix-jitsi-web.service installed | - name: Ensure matrix-jitsi-web.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/web/matrix-jitsi-web.service.j2" | src: "{{ role_path }}/templates/web/matrix-jitsi-web.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-jitsi-web.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-web.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_jitsi_web_systemd_service_result | register: matrix_jitsi_web_systemd_service_result | ||||
| when: matrix_jitsi_enabled | bool | when: matrix_jitsi_enabled | bool | ||||
| @@ -70,7 +70,7 @@ | |||||
| - name: Check existence of matrix-jitsi-web service | - name: Check existence of matrix-jitsi-web service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-web.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-web.service" | |||||
| register: matrix_jitsi_web_service_stat | register: matrix_jitsi_web_service_stat | ||||
| when: "not matrix_jitsi_enabled | bool" | when: "not matrix_jitsi_enabled | bool" | ||||
| @@ -85,7 +85,7 @@ | |||||
| - name: Ensure matrix-jitsi-web.service doesn't exist | - name: Ensure matrix-jitsi-web.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-jitsi-web.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-jitsi-web.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_jitsi_enabled | bool and matrix_jitsi_web_service_stat.stat.exists" | when: "not matrix_jitsi_enabled | bool and matrix_jitsi_web_service_stat.stat.exists" | ||||
| @@ -47,7 +47,7 @@ | |||||
| - name: Ensure matrix-ldap-registration-proxy.service installed | - name: Ensure matrix-ldap-registration-proxy.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-ldap-registration-proxy.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-ldap-registration-proxy.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-ldap-registration-proxy.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ldap-registration-proxy.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_ldap_registration_proxy_systemd_service_result | register: matrix_ldap_registration_proxy_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-matrix_ldap_registration_proxy service | - name: Check existence of matrix-matrix_ldap_registration_proxy service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-ldap-registration-proxy.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ldap-registration-proxy.service" | |||||
| register: matrix_ldap_registration_proxy_service_stat | register: matrix_ldap_registration_proxy_service_stat | ||||
| - name: Ensure matrix-matrix_ldap_registration_proxy is stopped | - name: Ensure matrix-matrix_ldap_registration_proxy is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-ldap-registration-proxy.service doesn't exist | - name: Ensure matrix-ldap-registration-proxy.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-ldap-registration-proxy.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ldap-registration-proxy.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_ldap_registration_proxy_service_stat.stat.exists | bool" | when: "matrix_ldap_registration_proxy_service_stat.stat.exists | bool" | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Check existence of old matrix-mxisd service | - name: Check existence of old matrix-mxisd service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mxisd.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mxisd.service" | |||||
| register: matrix_mxisd_service_stat | register: matrix_mxisd_service_stat | ||||
| - name: Ensure matrix-mxisd is stopped | - name: Ensure matrix-mxisd is stopped | ||||
| @@ -29,7 +29,7 @@ | |||||
| - name: Check existence of matrix-ma1sd service | - name: Check existence of matrix-ma1sd service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-ma1sd.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ma1sd.service" | |||||
| register: matrix_ma1sd_service_stat | register: matrix_ma1sd_service_stat | ||||
| when: "ma1sd_migrate_mxisd_data_dir_stat.stat.exists" | when: "ma1sd_migrate_mxisd_data_dir_stat.stat.exists" | ||||
| @@ -70,7 +70,7 @@ | |||||
| - name: Ensure outdated matrix-mxisd.service doesn't exist | - name: Ensure outdated matrix-mxisd.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mxisd.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mxisd.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_mxisd_service_stat.stat.exists" | when: "matrix_mxisd_service_stat.stat.exists" | ||||
| @@ -162,7 +162,7 @@ | |||||
| - name: Ensure matrix-ma1sd.service installed | - name: Ensure matrix-ma1sd.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-ma1sd.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-ma1sd.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-ma1sd.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ma1sd.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_ma1sd_systemd_service_result | register: matrix_ma1sd_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-ma1sd service | - name: Check existence of matrix-ma1sd service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-ma1sd.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ma1sd.service" | |||||
| register: matrix_ma1sd_service_stat | register: matrix_ma1sd_service_stat | ||||
| - name: Ensure matrix-ma1sd is stopped | - name: Ensure matrix-ma1sd is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-ma1sd.service doesn't exist | - name: Ensure matrix-ma1sd.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-ma1sd.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ma1sd.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_ma1sd_service_stat.stat.exists | bool" | when: "matrix_ma1sd_service_stat.stat.exists | bool" | ||||
| @@ -61,7 +61,7 @@ | |||||
| - name: Ensure matrix-mailer.service installed | - name: Ensure matrix-mailer.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-mailer.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-mailer.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-mailer.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mailer.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_mailer_systemd_service_result | register: matrix_mailer_systemd_service_result | ||||
| when: matrix_mailer_enabled | bool | when: matrix_mailer_enabled | bool | ||||
| @@ -77,7 +77,7 @@ | |||||
| - name: Check existence of matrix-mailer service | - name: Check existence of matrix-mailer service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mailer.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mailer.service" | |||||
| register: matrix_mailer_service_stat | register: matrix_mailer_service_stat | ||||
| when: "not matrix_mailer_enabled | bool" | when: "not matrix_mailer_enabled | bool" | ||||
| @@ -92,7 +92,7 @@ | |||||
| - name: Ensure matrix-mailer.service doesn't exist | - name: Ensure matrix-mailer.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-mailer.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-mailer.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_mailer_enabled | bool and matrix_mailer_service_stat.stat.exists" | when: "not matrix_mailer_enabled | bool and matrix_mailer_service_stat.stat.exists" | ||||
| @@ -207,7 +207,7 @@ | |||||
| - name: Ensure matrix-nginx-proxy.service installed | - name: Ensure matrix-nginx-proxy.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-nginx-proxy.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-nginx-proxy.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-nginx-proxy.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-nginx-proxy.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_nginx_proxy_systemd_service_result | register: matrix_nginx_proxy_systemd_service_result | ||||
| when: matrix_nginx_proxy_enabled | bool | when: matrix_nginx_proxy_enabled | bool | ||||
| @@ -224,7 +224,7 @@ | |||||
| - name: Check existence of matrix-nginx-proxy service | - name: Check existence of matrix-nginx-proxy service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-nginx-proxy.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-nginx-proxy.service" | |||||
| register: matrix_nginx_proxy_service_stat | register: matrix_nginx_proxy_service_stat | ||||
| when: "not matrix_nginx_proxy_enabled | bool" | when: "not matrix_nginx_proxy_enabled | bool" | ||||
| @@ -239,7 +239,7 @@ | |||||
| - name: Ensure matrix-nginx-proxy.service doesn't exist | - name: Ensure matrix-nginx-proxy.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-nginx-proxy.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-nginx-proxy.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_nginx_proxy_enabled | bool and matrix_nginx_proxy_service_stat.stat.exists" | when: "not matrix_nginx_proxy_enabled | bool and matrix_nginx_proxy_service_stat.stat.exists" | ||||
| @@ -43,7 +43,7 @@ | |||||
| - name: Ensure SSL renewal systemd units installed | - name: Ensure SSL renewal systemd units installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/{{ item.name }}.j2" | src: "{{ role_path }}/templates/systemd/{{ item.name }}.j2" | ||||
| dest: "{{ matrix_systemd_path }}/{{ item.name }}" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/{{ item.name }}" | |||||
| mode: 0644 | mode: 0644 | ||||
| when: "item.applicable | bool" | when: "item.applicable | bool" | ||||
| with_items: "{{ matrix_ssl_renewal_systemd_units_list }}" | with_items: "{{ matrix_ssl_renewal_systemd_units_list }}" | ||||
| @@ -56,7 +56,7 @@ | |||||
| block: | block: | ||||
| - name: Ensure matrix-ssl-lets-encrypt-renew cronjob removed | - name: Ensure matrix-ssl-lets-encrypt-renew cronjob removed | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/{{ item.name }}" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/{{ item.name }}" | |||||
| state: absent | state: absent | ||||
| when: "not item.applicable | bool" | when: "not item.applicable | bool" | ||||
| with_items: "{{ matrix_ssl_renewal_systemd_units_list }}" | with_items: "{{ matrix_ssl_renewal_systemd_units_list }}" | ||||
| @@ -34,7 +34,7 @@ | |||||
| - name: Ensure matrix-ntfy.service installed | - name: Ensure matrix-ntfy.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-ntfy.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-ntfy.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-ntfy.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ntfy.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_ntfy_systemd_service_result | register: matrix_ntfy_systemd_service_result | ||||
| @@ -2,7 +2,7 @@ | |||||
| - name: Check existence of matrix-ntfy service | - name: Check existence of matrix-ntfy service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-ntfy.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ntfy.service" | |||||
| register: matrix_ntfy_service_stat | register: matrix_ntfy_service_stat | ||||
| - name: Ensure matrix-ntfy is stopped | - name: Ensure matrix-ntfy is stopped | ||||
| @@ -16,7 +16,7 @@ | |||||
| - name: Ensure matrix-ntfy.service doesn't exist | - name: Ensure matrix-ntfy.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-ntfy.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-ntfy.service" | |||||
| state: absent | state: absent | ||||
| when: "matrix_ntfy_service_stat.stat.exists" | when: "matrix_ntfy_service_stat.stat.exists" | ||||
| @@ -53,7 +53,7 @@ | |||||
| - name: Ensure matrix-postgres-backup.service installed | - name: Ensure matrix-postgres-backup.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-postgres-backup.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-postgres-backup.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-postgres-backup.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postgres-backup.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_postgres_backup_systemd_service_result | register: matrix_postgres_backup_systemd_service_result | ||||
| when: matrix_postgres_backup_enabled | bool | when: matrix_postgres_backup_enabled | bool | ||||
| @@ -69,7 +69,7 @@ | |||||
| - name: Check existence of matrix-postgres-backup service | - name: Check existence of matrix-postgres-backup service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-postgres-backup.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postgres-backup.service" | |||||
| register: matrix_postgres_backup_service_stat | register: matrix_postgres_backup_service_stat | ||||
| when: "not matrix_postgres_backup_enabled | bool" | when: "not matrix_postgres_backup_enabled | bool" | ||||
| @@ -83,7 +83,7 @@ | |||||
| - name: Ensure matrix-postgres-backup.service doesn't exist | - name: Ensure matrix-postgres-backup.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-postgres-backup.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postgres-backup.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_postgres_backup_enabled | bool and matrix_postgres_backup_service_stat.stat.exists" | when: "not matrix_postgres_backup_enabled | bool and matrix_postgres_backup_service_stat.stat.exists" | ||||
| @@ -68,7 +68,7 @@ | |||||
| - name: Ensure outdated matrix-postgres.service doesn't exist | - name: Ensure outdated matrix-postgres.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-postgres.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postgres.service" | |||||
| state: absent | state: absent | ||||
| when: "result_pg_old_data_dir_stat.stat.exists" | when: "result_pg_old_data_dir_stat.stat.exists" | ||||
| @@ -121,7 +121,7 @@ | |||||
| - name: Ensure matrix-postgres.service installed | - name: Ensure matrix-postgres.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-postgres.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-postgres.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-postgres.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postgres.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_postgres_systemd_service_result | register: matrix_postgres_systemd_service_result | ||||
| when: matrix_postgres_enabled | bool | when: matrix_postgres_enabled | bool | ||||
| @@ -163,7 +163,7 @@ | |||||
| - name: Check existence of matrix-postgres service | - name: Check existence of matrix-postgres service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-postgres.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postgres.service" | |||||
| register: matrix_postgres_service_stat | register: matrix_postgres_service_stat | ||||
| when: "not matrix_postgres_enabled | bool" | when: "not matrix_postgres_enabled | bool" | ||||
| @@ -176,7 +176,7 @@ | |||||
| - name: Ensure matrix-postgres.service doesn't exist | - name: Ensure matrix-postgres.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-postgres.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-postgres.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_postgres_enabled | bool and matrix_postgres_service_stat.stat.exists" | when: "not matrix_postgres_enabled | bool and matrix_postgres_service_stat.stat.exists" | ||||
| @@ -19,7 +19,7 @@ | |||||
| - name: Ensure matrix-prometheus-node-exporter.service installed | - name: Ensure matrix-prometheus-node-exporter.service installed | ||||
| ansible.builtin.template: | ansible.builtin.template: | ||||
| src: "{{ role_path }}/templates/systemd/matrix-prometheus-node-exporter.service.j2" | src: "{{ role_path }}/templates/systemd/matrix-prometheus-node-exporter.service.j2" | ||||
| dest: "{{ matrix_systemd_path }}/matrix-prometheus-node-exporter.service" | |||||
| dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-prometheus-node-exporter.service" | |||||
| mode: 0644 | mode: 0644 | ||||
| register: matrix_prometheus_node_exporter_systemd_service_result | register: matrix_prometheus_node_exporter_systemd_service_result | ||||
| when: matrix_prometheus_node_exporter_enabled | bool | when: matrix_prometheus_node_exporter_enabled | bool | ||||
| @@ -35,7 +35,7 @@ | |||||
| - name: Check existence of matrix-prometheus-node-exporter service | - name: Check existence of matrix-prometheus-node-exporter service | ||||
| ansible.builtin.stat: | ansible.builtin.stat: | ||||
| path: "{{ matrix_systemd_path }}/matrix-prometheus-node-exporter.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-prometheus-node-exporter.service" | |||||
| register: matrix_prometheus_node_exporter_service_stat | register: matrix_prometheus_node_exporter_service_stat | ||||
| - name: Ensure matrix-prometheus-node-exporter is stopped | - name: Ensure matrix-prometheus-node-exporter is stopped | ||||
| @@ -49,7 +49,7 @@ | |||||
| - name: Ensure matrix-prometheus-node-exporter.service doesn't exist | - name: Ensure matrix-prometheus-node-exporter.service doesn't exist | ||||
| ansible.builtin.file: | ansible.builtin.file: | ||||
| path: "{{ matrix_systemd_path }}/matrix-prometheus-node-exporter.service" | |||||
| path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-prometheus-node-exporter.service" | |||||
| state: absent | state: absent | ||||
| when: "not matrix_prometheus_node_exporter_enabled | bool and matrix_prometheus_node_exporter_service_stat.stat.exists" | when: "not matrix_prometheus_node_exporter_enabled | bool and matrix_prometheus_node_exporter_service_stat.stat.exists" | ||||