Last change
on this file since 14212 was
14192,
checked in by Henrik Bettermann, 8 years ago
|
Add Ikoba Demo and Ikoba Uniben instances.
|
File size:
1.6 KB
|
Line | |
---|
1 | --- |
---|
2 | # This ansible-playbook prepares productive |
---|
3 | # servers for reboot. |
---|
4 | # |
---|
5 | # What it does: |
---|
6 | # stop all services in need of manual stop |
---|
7 | # |
---|
8 | # It will normally be run with ``ask-pass`` |
---|
9 | # |
---|
10 | # Sample: |
---|
11 | # |
---|
12 | # $ ansible-playbook -i host -K -l h5.waeup.org playbook-prep-reboot.yml |
---|
13 | # |
---|
14 | |
---|
15 | - hosts: h5.waeup.org |
---|
16 | become: yes |
---|
17 | become_user: root |
---|
18 | tasks: |
---|
19 | #- name: do something |
---|
20 | # file: state=touch path=/home/uli/123 |
---|
21 | # become_user: kofa |
---|
22 | - name: Stop odoo |
---|
23 | service: name=odoo-server state=stopped |
---|
24 | - name: Stop scientific african |
---|
25 | command: sudo -u henrik /home/henrik/zope/instances/sciafr/bin/zopectl stop |
---|
26 | - name: Stop uniben-staff |
---|
27 | command: sudo -u henrik /data/srp/instances/uniben-staff/bin/zopectl stop |
---|
28 | - name: Stop ngren plone |
---|
29 | command: sudo -u plone /data/plone/ngren/bin/instance stop |
---|
30 | - name: Stop waeup plone |
---|
31 | command: sudo -u plone /data/plone/waeup/bin/instance stop |
---|
32 | |
---|
33 | |
---|
34 | - hosts: h6.waeup.org |
---|
35 | become: yes |
---|
36 | become_user: root |
---|
37 | tasks: |
---|
38 | - name: Stop Ikoba PCN instance |
---|
39 | command: sudo -u ikoba /ikoba/pcn/bin/ikobactl stop |
---|
40 | args: |
---|
41 | chdir: /ikoba/pcn/ |
---|
42 | - name: Stop Ikoba Demo instance |
---|
43 | command: sudo -u ikoba /ikoba/demo/bin/ikobactl stop |
---|
44 | args: |
---|
45 | chdir: /ikoba/demo/ |
---|
46 | - name: Stop Kofa instances |
---|
47 | command: sudo -u kofa /kofa/scripts/kofactl_all.sh stop |
---|
48 | args: |
---|
49 | chdir: /kofa/scripts |
---|
50 | |
---|
51 | |
---|
52 | - hosts: h7.waeup.org |
---|
53 | become: yes |
---|
54 | become_user: root |
---|
55 | tasks: |
---|
56 | - name: Stop Kofa instances |
---|
57 | command: sudo -u kofa /kofa/scripts/kofactl_all.sh stop |
---|
58 | args: |
---|
59 | chdir: /kofa/scripts |
---|
60 | - name: Stop Ikoba Uniben instance |
---|
61 | command: sudo -u ikoba /ikoba/ikobacustom.uniben/bin/ikobactl stop |
---|
62 | args: |
---|
63 | chdir: /ikoba/ikobacustom.uniben/ |
---|
Note: See
TracBrowser for help on using the repository browser.