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/checkbasic
2001-08-17 05:46:24 +00:00

41 lines
1.1 KiB
Bash
Executable File

#!/bin/sh
#
# checkbasic - A script for mbse bbs that checks if your
# installation is correct. If it is then
# normal installation is allowed. If it is
# pristine, basic installation must be done.
# If it bad or incomplete installed it will
# give an errormessage.
#
# v1.00 08-Oct-2000 (c) Michiel Broek.
if [ "`grep mbse: /etc/passwd`" != "" ]; then
if [ "`grep bbs: /etc/group`" != "" ]; then
if [ -n "$MBSE_ROOT" ]; then
if [ "$LOGNAME" = "mbse" ]; then
#
# Looks good, normal mbse user and environment is set.
# Exit with errorcode 0
echo "Hm, looks good..."
exit 0
else
echo "*** You are not logged in as user 'mbse' ***"
exit 1
fi
else
echo "*** MBSE_ROOT environment is not set or you are not 'mbse' ***"
exit 1
fi
else
echo "*** Group 'bbs' is missing on your system ***"
exit 1
fi
else
echo "*** User 'mbse' is missing on your system ***"
echo " It looks like you need to do a basic install."
echo " Make sure you are root and type ./SETUP.sh and"
echo " read the file INSTALL for instructions."
fi