packages/net/miau/files/miau.init
nbd 7608ba449f init script cleanup, use /etc/rc.d/ for enabled scripts, /etc/init.d/<pkgname> (enable|disable) manages symlinks
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5128 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-10-15 21:03:30 +00:00

31 lines
690 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
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
}