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.RedHat

79 lines
1.6 KiB
Plaintext
Raw Normal View History

2002-02-04 15:18:06 +00:00
#!/bin/sh
#
# chkconfig: 345 95 05
# description: Starts and stops MBSE BBS.
#
# For RedHat, E-Smith and Mandrake SYSV init style.
# $Id$
#
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 1
# Find the MBSE_ROOT from the /etc/passwd file.
MBSE_ROOT=`cat /etc/passwd | grep mbse: | awk -F ':' '{ print $6}'`
if [ "${MBSE_ROOT}" = "" ]
2002-02-04 15:18:06 +00:00
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} ]
2002-02-04 15:18:06 +00:00
then
echo "MBSE BBS: Home directory '${MBSE_ROOT}' not found."
2003-12-06 20:52:58 +00:00
exit 1
2002-02-04 15:18:06 +00:00
fi
export MBSE_ROOT
# See how we were called.
#
2002-02-04 15:18:06 +00:00
case "$1" in
2003-12-06 20:52:58 +00:00
start)
2002-02-04 15:18:06 +00:00
echo -n "Starting MBSE BBS: "
rm -f ${MBSE_ROOT}/var/run/*
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 "opened"
2002-02-04 15:18:06 +00:00
fi
touch /var/lock/subsys/mbsed
2002-02-04 15:18:06 +00:00
;;
2003-12-06 20:52:58 +00:00
stop)
2002-02-04 15:18:06 +00:00
echo -n "Shutting down MBSE BBS: "
if [ -f ${MBSE_ROOT}/var/run/mbtask ]; then
2003-12-06 20:52:58 +00:00
echo -n "logoff users "
su - mbse -c '${MBSE_ROOT}/bin/mbstat close wait -quiet' >/dev/null
2003-12-06 20:52:58 +00:00
echo -n "done, "
echo -n "stop mbtask: "
killproc mbtask -15
rm -f /var/lock/subsys/mbsed
sleep 3
2002-02-04 15:18:06 +00:00
fi
2002-02-04 16:14:47 +00:00
echo ""
2002-02-04 15:18:06 +00:00
;;
status)
2002-02-04 16:14:47 +00:00
status mbtask
2002-02-04 15:18:06 +00:00
;;
restart|reload)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac
exit 0