Sync scripts/.
This commit is contained in:
parent
33abc94bb0
commit
c9f14aa78a
@ -1,2 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
service corosync start || /bin/true
|
||||||
|
sleep 2
|
||||||
|
while ! service pacemaker start; do
|
||||||
|
echo "Attempting to start pacemaker"
|
||||||
|
sleep 1;
|
||||||
|
done;
|
||||||
crm node online
|
crm node online
|
||||||
|
sleep 2
|
||||||
|
while crm status | egrep -q 'Stopped$'; do
|
||||||
|
echo "Waiting for nodes to come online"
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Validate that service ports are active
|
|
||||||
HEALTH_DIR=`dirname $0`
|
|
||||||
SCRIPTS_DIR=`dirname $HEALTH_DIR`
|
|
||||||
. $SCRIPTS_DIR/scriptrc
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Grab any OPENSTACK_PORT* environment variables
|
|
||||||
openstack_ports=`env| awk -F '=' '(/OPENSTACK_PORT/){print $2}'`
|
|
||||||
for port in $openstack_ports
|
|
||||||
do
|
|
||||||
netstat -ln | grep -q ":$port "
|
|
||||||
done
|
|
@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# Validate that service is running
|
|
||||||
HEALTH_DIR=`dirname $0`
|
|
||||||
SCRIPTS_DIR=`dirname $HEALTH_DIR`
|
|
||||||
. $SCRIPTS_DIR/scriptrc
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# Grab any OPENSTACK_SERVICE* environment variables
|
|
||||||
openstack_service_names=`env| awk -F '=' '(/OPENSTACK_SERVICE/){print $2}'`
|
|
||||||
for service_name in $openstack_service_names
|
|
||||||
do
|
|
||||||
service $service_name status 2>/dev/null | grep -q running
|
|
||||||
done
|
|
@ -1,2 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
crm node standby
|
crm node standby
|
||||||
|
service pacemaker stop
|
||||||
|
service corosync stop
|
||||||
|
Loading…
x
Reference in New Issue
Block a user