blob: c34a7ffc0a8a72ff984cf1ba745d40d3dae0e521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---
- name: "Verify action to take"
hosts: localhost
tasks:
- name: "Check that -e 'action=[stop|start|restart]' was passed in"
fail:
msg: "The variable 'action' was not passed in with a value of 'stop', 'start' or 'restart' on the command line."
when: action not in ["stop", "start", "restart"]
- name: "Stop Openbook"
hosts: "{{ groups['target']|sort(reverse=True) }}"
serial: 1
tasks:
- name: "Stop Openbook"
shell: |
/etc/init.d/openbook stop
for cont in $(docker ps | grep -v 'COMMAND' | awk '{print $1}'); do
docker stop ${cont}
done
docker container prune -f
when: action in ["stop", "restart"]
- name: "Start Openbook"
hosts: "{{ groups['target']|sort }}"
serial: 1
tasks:
- name: "Start Openbook"
shell: /etc/init.d/openbook start
when: action in ["start", "restart"] and extra_args != "debug"
- name: "Start Openbook in debug mode"
shell: /etc/init.d/openbook debug
when: action in ["start", "restart"] and extra_args == "debug"
|