summaryrefslogtreecommitdiff
path: root/sys/lib/sysconfig/auth/boundary/sys.log.mkfile
blob: 20a86e335855c0c52e0824f5fc1c1fc9cd5d544e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
CLOG=lookout
LOG=auth cs dns fax ipboot listen mail telco runq cron timesync smtp ssh

all:V:
	cd /sys/log
	day=`{date|sed 's/(^[^ ]*) .*/\1/'}
	for(i in $LOG){
		if(test -e $i){
			cp $i $i.$day
			chmod 664 $i.$day
		}
		rm -f $i
		> $i
		chmod +arw $i
	}
	for(i in $CLOG){
		if(test -e $i){
			cp $i $i.$day
			chmod 664 $i.$day
		}
		rm -f $i
	}

startclog:VQ:
	for(i in $CLOG){
		aux/clog /mnt/consoles/$i /sys/log/$i &
	}