
* Fix errors in infrastructure blueprint one-style-config 1) Update sample config - remove non-existing directory 2) Add 0.4.1 version 3) Rename config file to sample Fixes-Bug: 1270734 * Fixed issue with copy configuration files. Closes-Bug: #1271079 * Removed SysV EL6 standalone file, removed old setup scripts * Fixed typo in daemon executable name * Delete init scripts and agent config dirs so we will update then and not delete cache if murano-repository is unavaliable Closes-bug: 1274470 * Fix accessing nested-dir scripts from nested-dir agent templates. This works the following way: if path to agent template is, .g. <someHash>/template/agent/SqlServerCluster/FailoverCluster.template, nd it references script file '/ImportCoreFunctions.ps1', then it will e searched in '<someHash>/template/agent/scripts/' dir, but if it eferences 'Failover-Cluster.ps1', it will be searched in <someHash>/template/agent/scripts/SqlServerCluster/' dir. o the root-like agent dir '<someHash>/template/agent' corresponds to oot-like scripts dir '<someHash>/template/agent/scripts', and the ctual script file will be searched immediately in root-like scripts dir if it starts with '/' (absolute name), or there will be 'rest-dirs' between root-like scripts dir and the script filename if the script filename is a relative one. 'rest-dirs' is the difference between root-like agent dir and the actual parent dir of the agent template which references the script dir. As you see, the abovementioned example is much clearer than the explanation. Closes-bug: #1271578 * Add forgotten deletion in metadata folder setup * Undo init file parameter remane * Return external network id together with routerId blueprint auto-assign-floating-ip * Fix name for syslog_log_facility param * Update reqirements for a release-0.4.1 Change-Id: I2744eaeef369220c5a8dabb027ba40622be9d242
102 lines
2.5 KiB
Bash
102 lines
2.5 KiB
Bash
#!/bin/sh
|
|
# Copyright (c) 2014 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
# Author: Igor Yozhikov <iyozhikov@mirantis.com>
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: murano-conductor
|
|
# Required-Start: $network $local_fs $remote_fs $syslog
|
|
# Required-Stop: $remote_fs
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: OpenStack Murano Conductor Service
|
|
# Description: This startup script launches murano-conductor service daemon.
|
|
### END INIT INFO
|
|
# chkconfig: 3 90 10
|
|
# description: This startup script launches murano-conductor service daemon.
|
|
# config: /etc/murano/murano-conductor.conf, /etc/murano/murano-conductor-paste.ini
|
|
#
|
|
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
|
|
DESC="murano-conductor"
|
|
NAME=murano-conductor
|
|
DAEMON=$(which muranoconductor)
|
|
PIDFILE=/var/run/murano/$NAME.pid
|
|
SCRIPTNAME=/etc/init.d/openstack-$NAME
|
|
SYSTEM_USER=murano
|
|
CONFIG_FILE=/etc/murano/murano-conductor.conf
|
|
LOCKFILE=/var/lock/subsys/$NAME
|
|
# Exit if the package is not installed
|
|
[ -x $DAEMON ] || exit 5
|
|
|
|
# source function library
|
|
. /etc/init.d/functions
|
|
|
|
RETVAL=0
|
|
|
|
|
|
start() {
|
|
if [ ! -d "/var/run/murano" ]; then
|
|
mkdir -p /var/run/murano
|
|
chown -R $SYSTEM_USER /var/run/murano
|
|
fi
|
|
echo -n "Starting $NAME: "
|
|
daemon --user $SYSTEM_USER "$DAEMON --config-file=$CONFIG_FILE &>/dev/null & echo \$! > $PIDFILE"
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && touch $LOCKFILE
|
|
return $RETVAL
|
|
}
|
|
|
|
stop() {
|
|
echo -n "Stopping $NAME: "
|
|
#killproc $DAEMON -TERM
|
|
killproc -p $PIDFILE $DAEMON
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && rm -f $LOCKFILE
|
|
return $RETVAL
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
rh_status() {
|
|
# run checks to determine if the service is running or use generic status
|
|
status $DAEMON
|
|
}
|
|
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
|
|
stop)
|
|
stop
|
|
;;
|
|
|
|
restart)
|
|
restart
|
|
;;
|
|
|
|
status)
|
|
rh_status
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop|status|restart}"
|
|
exit 2
|
|
esac
|
|
exit $? |