packages/net/miau/files/miau.init
mbm fa3b8c3b5b START/STOP values must be specified in the init script
git-svn-id: svn://svn.openwrt.org/openwrt/packages@7164 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-05-10 10:38:53 +00:00

32 lines
699 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=50
DEFAULT="/etc/default/miau"
OPTIONS="-d /etc/miau/"
LOG_DIR="/var/log/miau"
ERR_LOG="$LOG_DIR/error.log"
OUT_LOG="$LOG_DIR/miau.log"
start() {
[ -f $DEFAULT ] && . $DEFAULT
[ "$ENABLE_MIAU" = "yes" ] || exit 0
[ -f /var/run/miau.pid ] && {
echo "[ERROR] miau is running"
exit 0
}
[ -d $LOG_DIR ] || mkdir -p $LOG_DIR
/usr/bin/miau -f $OPTIONS > $OUT_LOG 2> $ERR_LOG &
PID=$!
sleep 1
if [ -d /proc/$PID ]; then
echo $PID > /var/run/miau.pid
else
echo "[ERROR] Unable to run miau as a daemon"
fi
}
stop() {
[ -f /var/run/miau.pid ] && kill $(cat /var/run/miau.pid) >/dev/null 2>&1 && rm /var/run/miau.pid
}