wok diff at/stuff/atd @ rev 18746

marble: one desktop entry only
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 26 11:26:22 2015 +0100 (2015-12-26)
parents
children 7f188676b59c
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/at/stuff/atd	Sat Dec 26 11:26:22 2015 +0100
     1.3 @@ -0,0 +1,58 @@
     1.4 +#!/bin/sh
     1.5 +# Start, stop and restart a atd deamon on SliTaz, at boot time or 
     1.6 +# with the command line.
     1.7 +#
     1.8 +# To start daemon at boot time, just put the right name in the $RUN_DAEMONS
     1.9 +# variable of /etc/rcS.conf and configure options with /etc/daemons.conf.
    1.10 +#
    1.11 +. /etc/init.d/rc.functions
    1.12 +
    1.13 +NAME=$(basename $0)
    1.14 +DESC="$NAME deamon"
    1.15 +DAEMON=$(which $NAME)
    1.16 +eval $(grep -i ^${NAME}_OPTIONS /etc/daemons.conf | sed 's/.*_OPT/OPT/')
    1.17 +PIDFILE=/var/run/$NAME.pid
    1.18 +
    1.19 +case "$1" in
    1.20 +  start)
    1.21 +    if active_pidfile $PIDFILE $NAME ; then
    1.22 +      echo "$NAME is already running."
    1.23 +      exit 1
    1.24 +    fi
    1.25 +    echo -n "Starting $DESC: $NAME... "
    1.26 +    $DAEMON $OPTIONS 
    1.27 +    [ -f $PIDFILE ] || pidof $NAME | awk '{ print $1 }' > $PIDFILE
    1.28 +    active_pidfile $PIDFILE $NAME
    1.29 +    status
    1.30 +    ;;
    1.31 +  stop)
    1.32 +    if ! active_pidfile $PIDFILE $NAME ; then
    1.33 +      echo "$NAME is not running."
    1.34 +      exit 1
    1.35 +    fi
    1.36 +    echo -n "Stopping $DESC: $NAME... "
    1.37 +    kill `cat $PIDFILE`
    1.38 +    status
    1.39 +    ;;
    1.40 +  restart)
    1.41 +    if ! active_pidfile $PIDFILE $NAME ; then
    1.42 +      echo "$NAME is not running."
    1.43 +      exit 1
    1.44 +    fi
    1.45 +    echo -n "Restarting $DESC: $NAME... "
    1.46 +    kill `cat $PIDFILE`
    1.47 +    sleep 2
    1.48 +    $DAEMON $OPTIONS
    1.49 +    [ -f $PIDFILE ] || pidof $NAME | awk '{ print $1 }' > $PIDFILE
    1.50 +    active_pidfile $PIDFILE $NAME
    1.51 +    status
    1.52 +    ;;
    1.53 +*)
    1.54 +    echo ""
    1.55 +    echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart]"
    1.56 +    echo ""
    1.57 +    exit 1
    1.58 +    ;;
    1.59 +esac
    1.60 +
    1.61 +exit 0