aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-support/deploychef/files/service-shutdown
blob: b89f9fa46c69402b10e9ec5e68ca2428d89b1ff6 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
# service-shutdown
#
# Copyright (c) 2014 Wind River Systems, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.

# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#
INITD_DIR=/etc/init.d/
services=$(cat %DEPLOYCHEF_ROOT_DIR%/shutdown-list)
for service in $services; do
    service=$(echo $service | awk -F'K..' '{print $2}')
    if [ -e $INITD_DIR$service ]; then
        $INITD_DIR$service stop
        sleep 1
    fi
done

#Clean up swift installation and all stale files
/etc/swift/swift_setup.sh clean

#Delete all the know data base entries
databases="ceilometer cinder glance heat keystone nova ovs_neutron \
    postgres"
for database in $databases; do
    sudo -u postgres dropdb $database
    sleep 1
done

#Now shutdown postgres and database directory
if [ -e ${INITD_DIR}postgresql ]; then
    ${INITD_DIR}postgresql stop
    killall postgres
    sleep 1
    rm -rf /etc/postgresql
    sleep 1
fi