本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
overmind
/
matrix-docker-ansible-deploy
镜像来自
https://github.com/spantaleev/matrix-docker-ansible-deploy
關注
1
收藏
0
複製
0
程式碼
問題
0
版本發佈
0
Wiki
活動
瀏覽代碼
Add a task to stop services (and remove containers)
pull/178/head
Marcel Partap
7 年之前
父節點
873c291be6
當前提交
d114736014
共有
2 個檔案被更改
,包括
12 行新增
和
1 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
roles/matrix-common-after/tasks/main.yml
+7
-0
roles/matrix-common-after/tasks/stop.yml
+ 5
- 1
roles/matrix-common-after/tasks/main.yml
查看文件
@@ -1,4 +1,8 @@
- import_tasks: "{{ role_path }}/tasks/start.yml"
when: run_start
tags:
- start
- start
- import_tasks: "{{ role_path }}/tasks/stop.yml"
tags:
- stop
+ 7
- 0
roles/matrix-common-after/tasks/stop.yml
查看文件
@@ -0,0 +1,7 @@
---
- name: Ensure Matrix services stopped
service:
name: "{{ item }}"
state: stopped
with_items: "{{ matrix_systemd_services_list }}"
Write
Preview
Loading…
取消
儲存