scripts: Wait up to 10 seconds when shutting down the CORE daemon.

This commit is contained in:
tgoff0 2015-01-28 02:15:58 +00:00
parent 8ce480a25d
commit e0894a321e

View file

@ -70,6 +70,7 @@ PIDFILE=/var/run/core-daemon.pid
if [ $DEB = yes ]; then
daemon="start-stop-daemon --start -p ${PIDFILE} --exec /usr/bin/python --"
#daemon=start_daemon
killproc="start-stop-daemon --stop --quiet --oknodo --retry 10"
status=status_of_proc
msg () {
log_daemon_msg "$@"
@ -79,6 +80,7 @@ if [ $DEB = yes ]; then
}
else
daemon="daemon /usr/bin/python"
killproc="killproc -d 10"
status=status
msg () {
echo -n $"$@"
@ -99,7 +101,7 @@ start() {
stop() {
msg "Shutting down core-daemon"
killproc -p ${PIDFILE} $cored
$killproc -p ${PIDFILE} $cored
RETVAL=$?
rm -f ${PIDFILE}
endmsg