mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
133 lines
2.8 KiB
Plaintext
133 lines
2.8 KiB
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Salt API
|
||
|
###################################
|
||
|
|
||
|
# LSB header
|
||
|
|
||
|
### BEGIN INIT INFO
|
||
|
# Description: This is a daemon that controls the salt api
|
||
|
# Provides: salt-api
|
||
|
# Required-Start: network
|
||
|
# Short-Description: salt api control daemon
|
||
|
### END INIT INFO
|
||
|
|
||
|
# chkconfig header
|
||
|
|
||
|
# chkconfig: 345 99 99
|
||
|
# description: This is a daemon that controls the salt api
|
||
|
#
|
||
|
# processname: /usr/bin/salt-api
|
||
|
|
||
|
if [ -f /etc/default/salt ]; then
|
||
|
. /etc/default/salt
|
||
|
else
|
||
|
SALTAPI=/usr/bin/salt-api
|
||
|
PYTHON=/usr/bin/python
|
||
|
fi
|
||
|
|
||
|
# Sanity checks.
|
||
|
[ -x $SALTAPI ] || exit 0
|
||
|
|
||
|
DEBIAN_VERSION=/etc/debian_version
|
||
|
SUSE_RELEASE=/etc/SuSE-release
|
||
|
# Source function library.
|
||
|
if [ -f $DEBIAN_VERSION ]; then
|
||
|
break
|
||
|
elif [ -f $SUSE_RELEASE -a -r /etc/rc.status ]; then
|
||
|
. /etc/rc.status
|
||
|
else
|
||
|
. /etc/rc.d/init.d/functions
|
||
|
fi
|
||
|
|
||
|
SERVICE=salt-api
|
||
|
PROCESS=salt-api
|
||
|
CONFIG_ARGS=" "
|
||
|
|
||
|
RETVAL=0
|
||
|
|
||
|
start() {
|
||
|
echo -n $"Starting salt-api daemon: "
|
||
|
if [ -f $SUSE_RELEASE ]; then
|
||
|
startproc -f -p /var/run/$SERVICE.pid $SALTAPI $CONFIG_ARGS
|
||
|
rc_status -v
|
||
|
elif [ -e $DEBIAN_VERSION ]; then
|
||
|
if [ -f $LOCKFILE ]; then
|
||
|
echo -n "already started, lock file found"
|
||
|
RETVAL=1
|
||
|
elif $PYTHON $SALTAPI; then
|
||
|
echo -n "OK"
|
||
|
RETVAL=0
|
||
|
fi
|
||
|
else
|
||
|
daemon --check $SERVICE $SALTAPI $CONFIG_ARGS
|
||
|
fi
|
||
|
RETVAL=$?
|
||
|
echo
|
||
|
return $RETVAL
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
echo -n $"Stopping salt-api daemon: "
|
||
|
if [ -f $SUSE_RELEASE ]; then
|
||
|
killproc -TERM $SALTAPI
|
||
|
rc_status -v
|
||
|
elif [ -f $DEBIAN_VERSION ]; then
|
||
|
# Added this since Debian's start-stop-daemon doesn't support spawned processes
|
||
|
if ps -ef | grep "$PYTHON $SALTAPI" | grep -v grep | awk '{print $2}' | xargs kill &> /dev/null; then
|
||
|
echo -n "OK"
|
||
|
RETVAL=0
|
||
|
else
|
||
|
echo -n "Daemon is not started"
|
||
|
RETVAL=1
|
||
|
fi
|
||
|
else
|
||
|
killproc $PROCESS
|
||
|
fi
|
||
|
RETVAL=$?
|
||
|
echo
|
||
|
}
|
||
|
|
||
|
restart() {
|
||
|
stop
|
||
|
start
|
||
|
}
|
||
|
|
||
|
# See how we were called.
|
||
|
case "$1" in
|
||
|
start|stop|restart)
|
||
|
$1
|
||
|
;;
|
||
|
status)
|
||
|
if [ -f $SUSE_RELEASE ]; then
|
||
|
echo -n "Checking for service salt-api "
|
||
|
checkproc $SALTAPI
|
||
|
rc_status -v
|
||
|
elif [ -f $DEBIAN_VERSION ]; then
|
||
|
if [ -f $LOCKFILE ]; then
|
||
|
RETVAL=0
|
||
|
echo "salt-api is running."
|
||
|
else
|
||
|
RETVAL=1
|
||
|
echo "salt-api is stopped."
|
||
|
fi
|
||
|
else
|
||
|
status $PROCESS
|
||
|
RETVAL=$?
|
||
|
fi
|
||
|
;;
|
||
|
condrestart)
|
||
|
[ -f $LOCKFILE ] && restart || :
|
||
|
;;
|
||
|
reload)
|
||
|
echo "can't reload configuration, you have to restart it"
|
||
|
RETVAL=$?
|
||
|
;;
|
||
|
*)
|
||
|
echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}"
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
exit $RETVAL
|
||
|
|