Changed init scripts

This commit is contained in:
Michiel Broek
2002-02-04 15:18:06 +00:00
parent 8d4311b6a3
commit d1c532d1ca
13 changed files with 352 additions and 348 deletions

69
script/init.Slackware Normal file
View File

@@ -0,0 +1,69 @@
#!/bin/sh
#
# description: Starts and stops MBSE BBS.
#
# $Id$
#
# /etc/rc.d/init.d for Slackware
#
# Find the MBSE_ROOT from the /etc/passwd file.
MBSE_ROOT=`cat /etc/passwd | grep mbse: | awk -F ':' '{ print $6}'`
if [ "$MBSE_ROOT" = "" ]
then
echo "MBSE BBS: No 'mbse' user in the password file."
exit 1
fi
if [ ! -d $MBSE_ROOT ]
then
echo "MBSE BBS: Home directory '$MBSE_ROOT' not found."
exit 1
fi
export MBSE_ROOT
# See how we were called.
case "$1" in
start)
echo -n "MBSE BBS starting:"
rm -f $MBSE_ROOT/sema/*
rm -f $MBSE_ROOT/var/*.LCK
rm -f $MBSE_ROOT/tmp/mb*
su mbse -c '$MBSE_ROOT/bin/mbtask' >/dev/null
echo -n " mbtask"
sleep 2
if [ -f $MBSE_ROOT/etc/config.data ]; then
su mbse -c '$MBSE_ROOT/bin/mbstat open -quiet'
echo " and opened the bbs."
fi
;;
stop)
echo -n "MBSE BBS shutdown:"
if [ -f $MBSE_ROOT/etc/config.data ]; then
echo -n " logoff users "
su mbse -c '$MBSE_ROOT/bin/mbstat close wait -quiet' >/dev/null
echo -n "done,"
fi
echo -n " stopping mbtask "
kill -15 `pidof $MBSE_ROOT/bin/mbtask`
echo "done."
;;
status)
echo -n "MBSE BBS status: "
if [ "`/sbin/pidof mbtask`" = "" ]; then
echo "mbtask is NOT running"
else
echo "mbtask Ok"
fi
;;
restart|reload)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|reload|restart|status}"
exit 1
esac
exit 0