slackbuilds_ponce/system/uptimed/rc.uptimed
Graham Orange 4fecfb38f8 system/uptimed: Updated for version 0.4.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2015-11-05 00:44:58 +07:00

59 lines
648 B
Bash

#!/bin/bash
#
# run control file for uptimed
RETVAL=0
NAME="uptimed"
UPTIMED="/usr/sbin/uptimed"
PIDFILE="/var/run/uptimed"
START="$UPTIMED"
if [ -e $PIDFILE ]; then
STOP="kill $( cat $PIDFILE )"
else
STOP="killall $UPTIMED"
fi
CREATEBOOTID="$UPTIMED -b"
start()
{
echo -n $"Starting $NAME:"
$START
RETVAL=$?
echo
}
stop()
{
echo -n $"Stopping $NAME:"
$STOP
RETVAL=$?
echo
}
createbootid()
{
$CREATEBOOTID
RETVAL=$?
$POST
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
createbootid)
createbootid
;;
*)
echo $"Usage: $0 {start|stop|restart|createbootid}"
RETVAL=1
esac
exit $RETVAL