This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/script/init.SuSE

82 lines
1.7 KiB
Plaintext
Raw Normal View History

2002-02-04 15:18:06 +00:00
#!/bin/bash
#
# $Id$
#
# /sbin/init.d/mbsed for SuSE
2002-05-10 14:23:24 +00:00
### BEGIN INIT INFO
# Provides: mbsed
# Default-Start: 2 3 5
# Default-Stop:
# Description: Start MBSE BBS
### END INIT INFO
2002-02-04 15:18:06 +00:00
# Find the MBSE_ROOT from the /etc/passwd file.
MBSE_ROOT=`cat /etc/passwd | grep mbse: | awk -F ':' '{ print $6}'`
if [ "$MBSE_ROOT" = "" ]
then
2003-12-06 20:52:58 +00:00
echo "MBSE BBS: No 'mbse' user in the password file."
exit 1
2002-02-04 15:18:06 +00:00
fi
if [ ! -d $MBSE_ROOT ]
then
2003-12-06 20:52:58 +00:00
echo "MBSE BBS: Home directory '$MBSE_ROOT' not found."
exit 1
2002-02-04 15:18:06 +00:00
fi
export MBSE_ROOT
case "$1" in
start)
echo -n "MBSE BBS starting:"
2003-12-06 20:52:58 +00:00
if [ -f $MBSE_ROOT/var/run/mbtask ]; then
echo " already started"
2002-02-04 15:18:06 +00:00
else
2003-12-06 20:52:58 +00:00
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."
else
2002-02-04 15:18:06 +00:00
echo ""
2003-12-06 20:52:58 +00:00
fi
fi
2002-02-04 15:18:06 +00:00
;;
stop)
echo -n "MBSE BBS shutdown:"
2003-12-06 20:52:58 +00:00
if [ -f $MBSE_ROOT/var/run/mbtask ]; then
echo -n " logoff users "
su mbse -c '$MBSE_ROOT/bin/mbstat close wait -quiet' >/dev/null
echo -n "done,"
echo -n " stopping mbtask "
killproc `cat $MBSE_ROOT/var/run/mbtask` -15
sleep 3
echo "done."
else
echo "already stopped."
fi
2002-02-04 15:18:06 +00:00
;;
restart|reload)
$0 stop
$0 start
;;
status)
echo -n "MBSE BBS status: "
2003-12-06 20:52:58 +00:00
if [ ! -f $MBSE_ROOT/var/run/mbtask ]; then
echo "mbtask is NOT running"
2002-02-04 15:18:06 +00:00
else
2003-12-06 20:52:58 +00:00
echo "mbtask Ok"
2002-02-04 15:18:06 +00:00
fi
;;
*)
echo "Usage: $0 {start|stop|status|reload|restart}"
exit 1
esac
exit 0