15df963544
During cloud-init related improvements murano-agent location was specified for the pip-style installation. This leads to unability to deploy the apps on the images with pre-installed murano-agent without network. This commit create a symlink to the pre-installed agent in place where pip usually installs packages. Change-Id: I8d90d33dc0a1c36ac4524f8f3b82223c23829126 Closes-Bug: #1570962
52 lines
1.1 KiB
Bash
52 lines
1.1 KiB
Bash
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: murano-agent
|
|
# Required-Start: $local_fs $network $named $time $syslog
|
|
# Required-Stop: $local_fs $network $named $time $syslog
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Description: murano-agent service
|
|
### END INIT INFO
|
|
|
|
SCRIPT="/usr/local/bin/muranoagent --config-dir /etc/murano"
|
|
RUNAS=root
|
|
|
|
PIDFILE=/var/run/murano.pid
|
|
LOGFILE=/var/log/murano.log
|
|
|
|
start() {
|
|
if [ -f /var/run/$PIDNAME ] && kill -0 $(cat /var/run/$PIDNAME); then
|
|
echo 'Service already running' >&2
|
|
return 1
|
|
fi
|
|
echo 'Starting service' >&2
|
|
local CMD="$SCRIPT &> \"$LOGFILE\" & echo \$!"
|
|
su -c "$CMD" $RUNAS > "$PIDFILE"
|
|
echo 'Service started' >&2
|
|
}
|
|
|
|
stop() {
|
|
if [ ! -f "$PIDFILE" ] || ! kill -0 $(cat "$PIDFILE"); then
|
|
echo 'Service not running' >&2
|
|
return 1
|
|
fi
|
|
echo 'Stopping service' >&2
|
|
kill -15 $(cat "$PIDFILE") && rm -f "$PIDFILE"
|
|
echo 'Service stopped' >&2
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
stop
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|uninstall}"
|
|
esac
|