16 lines
345 B
Plaintext
16 lines
345 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# MBSE BBS Monthly - Should be run at the first of the month at 00:10
|
||
|
#
|
||
|
# 26-Aug-1999 MB.
|
||
|
|
||
|
if [ "$MBSE_ROOT" = "" ]; then
|
||
|
export MBSE_ROOT=`cat /etc/passwd | grep mbse: | awk -F ':' '{ print $6}'`
|
||
|
fi
|
||
|
|
||
|
# While the system is on UPS battery power, don't start maintenance
|
||
|
#
|
||
|
while [ -f $MBSE_ROOT/sema/upsalarm ]; do
|
||
|
sleep 60
|
||
|
done
|