Current time: 06-21-2024, 04:13 PM Hello There, Guest! (LoginRegister)


Post Reply 
daemon not running properly?
Author Message
chrisi99 Offline
Junior Member
*

Posts: 28
Joined: Jun 2008
Reputation: 0
Post: #3
RE: daemon not running properly?
hi!

the status column reads "toadd" or "change"

Stopping the daemon results in a "fail"... strange!

Code:
* Starting ispCP GUI-Backend communication Daemon ispcp_daemon                                                     [ OK ]
Quote:PATH=/sbin:/bin:/usr/sbin:/usr/bin
NAME=ispcp_daemon
DAEMON=/var/www/ispcp/daemon/$NAME
PID=/var/run/$NAME.pid
DESC="ispCP GUI-Backend communication Daemon"
LOGDIR=/var/log/ispcp

LOGFILE=${LOGDIR}/${NAME}.log
DIETIME=3

START=1

# Debian LSB extensions (will be used if init-functions doesn't override them):
log_daemon_msg() {
if [ ! -z "${2:-}" ]; then
log_success_msg "${1:-}: ${2:-}"
else
log_success_msg "${1:-}"
fi
}
log_end_msg() {
local status="$1"
}

# if not present (e.g. *BSD) make sure to provide compatible methods via /etc/default/$NAME
if [ -f /lib/lsb/init-functions ]; then
. /lib/lsb/init-functions
fi

test -x $DAEMON || {
if [ "$1" = "stop" ]; then
log_warning_msg "$DAEMON not installed, but stopping anyway."
else
exit 5
fi }

# Read config file if present.
if [ -r /etc/default/$NAME ]; then
. /etc/default/$NAME
fi

if [ $START -eq 0 ]; then
log_warning_msg "Not starting $DESC: edit /etc/default/$NAME."
exit 1
fi

case "$1" in
start)
log_daemon_msg "Starting $DESC" "$NAME"

start_daemon -p $PID $DAEMON -p $PID
log_end_msg $?
;;
stop)
log_daemon_msg "Stopping $DESC" "$NAME"

killproc -p $PID $DAEMON

log_end_msg $?

[ ! -f "$PID" ] || rm -f $PID
;;
restart|force-reload)
log_daemon_msg "Stopping $DESC" "$NAME"

killproc -p $PID $DAEMON

log_end_msg $?

[ ! -f "$PID" ] || rm -f $PID

[ -n "$DIETIME" ] && sleep "$DIETIME"

log_daemon_msg "Starting $DESC" "$NAME"

start_daemon -p $PID $DAEMON -- -p $PID

log_end_msg $?
;;
status)
log_daemon_msg "Checking status of $DESC"

pidofproc $DAEMON

status="$?"
log_end_msg "$status"

case "$status" in
0)
log_success_msg "$NAME running"
;;
1)
log_warning_msg "$NAME not running (but pid file found)"
;;
;;
2)
log_warning_msg "$NAME not running (but lock file found)"
;;
3)
log_warning_msg "$NAME not running"
;;
4|*)
log_failure_msg "Service status is unknown"
exit 1
;;
esac
;;

*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
exit 1
;;
esac

exit 0

i checked the ispcp logfiles ... but nothing obvious occured...
06-30-2008 07:28 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
daemon not running properly? - chrisi99 - 06-30-2008, 07:16 AM
RE: daemon not running properly? - chrisi99 - 06-30-2008 07:28 AM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)