ed5026d6c9
At this point this only installs platform_utils Depends-On: https://review.openstack.org/613973 Change-Id: I5cfb89592b25d60adf717e97c1859af989c08d2f Signed-off-by: Dean Troyer <dtroyer@gmail.com>
87 lines
2.3 KiB
Bash
87 lines
2.3 KiB
Bash
#!/bin/bash
|
|
#
|
|
# lib/stx-integ
|
|
# Functions to control the configuration and operation of stx-integ
|
|
|
|
# Dependencies:
|
|
#
|
|
# - ``functions`` file
|
|
# - ``DEST``, ``DATA_DIR``, ``STACK_USER`` must be defined
|
|
|
|
# ``plugin.sh`` calls the entry points in this order:
|
|
#
|
|
# - install_integ
|
|
# - configure_integ
|
|
# - init_integ
|
|
# - start_integ
|
|
# - stop_integ
|
|
# - cleanup_integ
|
|
|
|
_XTRACE_STX_INTEG=$(set +o | grep xtrace)
|
|
set -o xtrace
|
|
|
|
# Defaults
|
|
# --------
|
|
|
|
STXINTEG_DIR=${GITDIR[$STX_INTEG_NAME]}
|
|
|
|
PLATFORM_UTIL_DIR=$STXINTEG_DIR/utilities/platform-util
|
|
|
|
STX_BIN_DIR=$(get_python_exec_prefix)
|
|
PYTHON_SITE_DIR=$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")
|
|
|
|
function install_platform_util {
|
|
pushd $PLATFORM_UTIL_DIR/platform-util
|
|
sudo python setup.py install --root=/ --install-lib=$PYTHON_SITE_DIR --prefix=/usr --install-data=/usr/share --single-version-externally-managed
|
|
popd
|
|
|
|
local stx_integ_sbindir=/usr/local/sbin/
|
|
local systemddir=/etc/systemd
|
|
sudo install -m 755 -d ${stx_integ_sbindir}
|
|
sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/patch-restart-mtce ${stx_integ_sbindir}
|
|
sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/patch-restart-processes ${stx_integ_sbindir}
|
|
sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/patch-restart-haproxy ${stx_integ_sbindir}
|
|
|
|
sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/cgcs_tc_setup.sh ${STX_BIN_DIR}
|
|
sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/remotelogging_tc_setup.sh ${STX_BIN_DIR}
|
|
sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/connectivity_test ${STX_BIN_DIR}
|
|
|
|
# sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/opt-platform.mount ${systemddir}/system
|
|
# sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/opt-platform.service ${systemddir}/system
|
|
# sudo install -m 755 $PLATFORM_UTIL_DIR/scripts/memcached.service ${systemddir}/system
|
|
}
|
|
|
|
function cleanup_integ {
|
|
# Cleanup the service
|
|
stop_integ
|
|
}
|
|
|
|
function configure_integ {
|
|
# Configure the service
|
|
:
|
|
}
|
|
|
|
function init_integ {
|
|
# Initialize and start the service
|
|
:
|
|
}
|
|
|
|
function install_integ {
|
|
# Install the service
|
|
if is_service_enabled platform-util; then
|
|
install_platform_util
|
|
fi
|
|
}
|
|
|
|
function sart_integ {
|
|
# Shut the service down
|
|
:
|
|
}
|
|
|
|
function stop_integ {
|
|
# Initialize and start the service
|
|
:
|
|
}
|
|
|
|
$_XTRACE_STX_INTEG
|