Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Dean Troyer | 7d28a0e | 2012-06-27 17:55:52 -0500 | [diff] [blame] | 2 | |
| 3 | # **unstack.sh** |
| 4 | |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 5 | # Stops that which is started by ``stack.sh`` (mostly) |
| 6 | # mysql and rabbit are left running as OpenStack code refreshes |
| 7 | # do not require them to be restarted. |
| 8 | # |
Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 9 | # Stop all processes by setting ``UNSTACK_ALL`` or specifying ``--all`` |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 10 | # on the command line |
| 11 | |
| 12 | # Keep track of the current devstack directory. |
| 13 | TOP_DIR=$(cd $(dirname "$0") && pwd) |
| 14 | |
| 15 | # Import common functions |
| 16 | source $TOP_DIR/functions |
| 17 | |
Terry Wilson | 428af5a | 2012-11-01 16:12:39 -0400 | [diff] [blame] | 18 | # Import database library |
| 19 | source $TOP_DIR/lib/database |
| 20 | |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 21 | # Load local configuration |
| 22 | source $TOP_DIR/stackrc |
| 23 | |
John Griffith | d53bedc | 2012-09-11 14:15:54 -0600 | [diff] [blame] | 24 | # Destination path for service data |
| 25 | DATA_DIR=${DATA_DIR:-${DEST}/data} |
| 26 | |
| 27 | # Get project function libraries |
| 28 | source $TOP_DIR/lib/cinder |
Sean Dague | b562e6a | 2012-11-19 16:00:01 -0500 | [diff] [blame] | 29 | source $TOP_DIR/lib/horizon |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 30 | source $TOP_DIR/lib/swift |
John Griffith | d53bedc | 2012-09-11 14:15:54 -0600 | [diff] [blame] | 31 | |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 32 | # Determine what system we are running on. This provides ``os_VENDOR``, |
| 33 | # ``os_RELEASE``, ``os_UPDATE``, ``os_PACKAGE``, ``os_CODENAME`` |
| 34 | GetOSVersion |
| 35 | |
| 36 | if [[ "$1" == "--all" ]]; then |
| 37 | UNSTACK_ALL=${UNSTACK_ALL:-1} |
| 38 | fi |
| 39 | |
Nachi Ueno | 8bc21f6 | 2012-11-19 22:04:28 -0800 | [diff] [blame] | 40 | if [[ "$Q_USE_DEBUG_COMMAND" == "True" ]]; then |
| 41 | source $TOP_DIR/openrc |
| 42 | source $TOP_DIR/lib/quantum |
| 43 | teardown_quantum |
| 44 | fi |
| 45 | |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 46 | # Shut down devstack's screen to get the bulk of OpenStack services in one shot |
Dean Troyer | eeaf266 | 2012-06-14 09:11:38 -0500 | [diff] [blame] | 47 | SCREEN=$(which screen) |
| 48 | if [[ -n "$SCREEN" ]]; then |
| 49 | SESSION=$(screen -ls | awk '/[0-9].stack/ { print $1 }') |
| 50 | if [[ -n "$SESSION" ]]; then |
| 51 | screen -X -S $SESSION quit |
| 52 | fi |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 53 | fi |
| 54 | |
| 55 | # Swift runs daemons |
| 56 | if is_service_enabled swift; then |
Attila Fazekas | ece6a33 | 2012-11-29 14:19:41 +0100 | [diff] [blame] | 57 | stop_swift |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 58 | fi |
| 59 | |
| 60 | # Apache has the WSGI processes |
| 61 | if is_service_enabled horizon; then |
Sean Dague | b562e6a | 2012-11-19 16:00:01 -0500 | [diff] [blame] | 62 | stop_horizon |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 63 | fi |
| 64 | |
Dean Troyer | c83a7e1 | 2012-11-29 11:47:58 -0600 | [diff] [blame^] | 65 | # Kill TLS proxies |
| 66 | if is_service_enabled tls-proxy; then |
| 67 | killall stud |
| 68 | fi |
| 69 | |
John Griffith | d53bedc | 2012-09-11 14:15:54 -0600 | [diff] [blame] | 70 | SCSI_PERSIST_DIR=$CINDER_STATE_PATH/volumes/* |
| 71 | |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 72 | # Get the iSCSI volumes |
Joe Gordon | 6fd2811 | 2012-11-13 16:55:41 -0800 | [diff] [blame] | 73 | if is_service_enabled cinder; then |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 74 | TARGETS=$(sudo tgtadm --op show --mode target) |
John Griffith | d53bedc | 2012-09-11 14:15:54 -0600 | [diff] [blame] | 75 | if [ $? -ne 0 ]; then |
| 76 | # If tgt driver isn't running this won't work obviously |
| 77 | # So check the response and restart if need be |
| 78 | echo "tgtd seems to be in a bad state, restarting..." |
Vincent Untz | c18b965 | 2012-12-04 12:36:34 +0100 | [diff] [blame] | 79 | if is_ubuntu; then |
John Griffith | d53bedc | 2012-09-11 14:15:54 -0600 | [diff] [blame] | 80 | restart_service tgt |
| 81 | else |
| 82 | restart_service tgtd |
| 83 | fi |
| 84 | TARGETS=$(sudo tgtadm --op show --mode target) |
| 85 | fi |
| 86 | |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 87 | if [[ -n "$TARGETS" ]]; then |
John Griffith | d53bedc | 2012-09-11 14:15:54 -0600 | [diff] [blame] | 88 | iqn_list=( $(grep --no-filename -r iqn $SCSI_PERSIST_DIR | sed 's/<target //' | sed 's/>//') ) |
| 89 | for i in "${iqn_list[@]}"; do |
| 90 | echo removing iSCSI target: $i |
| 91 | sudo tgt-admin --delete $i |
| 92 | done |
| 93 | fi |
| 94 | |
| 95 | if is_service_enabled cinder; then |
| 96 | sudo rm -rf $CINDER_STATE_PATH/volumes/* |
| 97 | fi |
| 98 | |
Vincent Untz | c18b965 | 2012-12-04 12:36:34 +0100 | [diff] [blame] | 99 | if is_ubuntu; then |
Sascha Peilicke | 5da67fe | 2012-07-18 13:27:32 +0200 | [diff] [blame] | 100 | stop_service tgt |
| 101 | else |
| 102 | stop_service tgtd |
| 103 | fi |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 104 | fi |
| 105 | |
| 106 | if [[ -n "$UNSTACK_ALL" ]]; then |
| 107 | # Stop MySQL server |
| 108 | if is_service_enabled mysql; then |
| 109 | stop_service mysql |
| 110 | fi |
Josh Kearney | 659eabf | 2012-09-06 13:47:06 -0500 | [diff] [blame] | 111 | |
Terry Wilson | 428af5a | 2012-11-01 16:12:39 -0400 | [diff] [blame] | 112 | if is_service_enabled postgresql; then |
| 113 | stop_service postgresql |
| 114 | fi |
| 115 | |
Josh Kearney | 659eabf | 2012-09-06 13:47:06 -0500 | [diff] [blame] | 116 | # Stop rabbitmq-server |
| 117 | if is_service_enabled rabbit; then |
| 118 | stop_service rabbitmq-server |
| 119 | fi |
Dean Troyer | f4d2395 | 2012-03-28 11:19:24 -0500 | [diff] [blame] | 120 | fi |
Gary Kotton | 722fe67 | 2012-07-18 07:43:01 -0400 | [diff] [blame] | 121 | |
| 122 | # Quantum dhcp agent runs dnsmasq |
| 123 | if is_service_enabled q-dhcp; then |
Surya Prabhakar | a9c4a8a | 2012-10-06 19:35:56 +0530 | [diff] [blame] | 124 | pid=$(ps aux | awk '/[d]nsmasq.+interface=tap/ { print $2 }') |
Yoshihiro Kaneko | 602cf9b | 2012-07-23 06:27:36 +0000 | [diff] [blame] | 125 | [ ! -z "$pid" ] && sudo kill -9 $pid |
Gary Kotton | 722fe67 | 2012-07-18 07:43:01 -0400 | [diff] [blame] | 126 | fi |