]> andersk Git - moira.git/blame - gen/prlogger.sh
Case-insensitive stuff.
[moira.git] / gen / prlogger.sh
CommitLineData
f6b24974 1#!/bin/sh
2
568331c6 3PATH=/bin:/usr/ucb:/usr/bin
4
f6b24974 5MR_TARERR=47836476
6MR_MISSINGFILE=47836473
7
8INFILE=/tmp/prlogger.out
9OUTFILE=/usr/spool/quota/users/prlogger
10
11if [ ! -r $INFILE ]; then
12 exit $MR_MISSINGFILE
13 fi
14
568331c6 15mv $INFILE $OUTFILE
f6b24974 16if [ $? != 0 ]; then
17 exit $MR_TARERR
18 fi
19
20/usr/spool/quota/users/moira_update &
21
568331c6 22rm -f $0 $INFILE
f6b24974 23exit 0
24
25# $Header$
This page took 0.055825 seconds and 5 git commands to generate.