Initial revision
This commit is contained in:
28
script/midnight
Normal file
28
script/midnight
Normal file
@@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# MBSE BBS Midnight - Should be run from cron at 00:00
|
||||
#
|
||||
# 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
|
||||
|
||||
# Rollover statistic counters.
|
||||
#
|
||||
$MBSE_ROOT/bin/mbfido roll -quiet
|
||||
|
||||
# Log "What's on Hold"
|
||||
#
|
||||
$MBSE_ROOT/bin/mbout stat -quiet
|
||||
|
||||
# Export messages "missed" by the fast mailscan
|
||||
#
|
||||
$MBSE_ROOT/bin/mbfido scan -full -quiet
|
||||
|
Reference in New Issue
Block a user