浏览代码

ensure systemd reloaded after bridge installation

pull/105/head
Lionstiger 7 年前
父节点
当前提交
278484656b
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. +6
    -0
      roles/matrix-synapse/tasks/ext/appservice-discord/setup.yml

+ 6
- 0
roles/matrix-synapse/tasks/ext/appservice-discord/setup.yml 查看文件

@@ -27,7 +27,13 @@
src: "{{ role_path }}/templates/ext/appservice-discord/systemd/matrix-appservice-discord.service.j2"
dest: "/etc/systemd/system/matrix-appservice-discord.service"
mode: 0644
register: matrix_appservice_discord_systemd_service_result
when: "matrix_appservice_discord_enabled"
- name: Ensure systemd reloaded after matrix-appservice-discord.service installation
service:
daemon_reload: yes
when: "matrix_appservice_discord_enabled and matrix_appservice_discord_systemd_service_result.changed"

- stat:
path: "{{ matrix_appservice_discord_base_path }}/discord-registration.yaml"


正在加载...
取消
保存