-
Notifications
You must be signed in to change notification settings - Fork 33
/
autorun
executable file
·76 lines (62 loc) · 2.04 KB
/
autorun
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/csh -f
#
# CircleMUD 2.0 autorun script
# Originally by Fred C. Merkel
# Copyright (c) 1993 The Trustees of The Johns Hopkins University
# All Rights Reserved
# See license.doc for more information
# Modifed by Christopher Dickey, Rift, Dunkelzahn, Demise, and Root.
# (c)2001 The AwakeMUD Consortium
# If .fastboot exists, the script will sleep for only 5 seconds between reboot
# attempts. If .killscript exists, the script commit suicide (and remove
# .killscript). If pause exists, the script will repeatedly sleep for
# 60 seconds and will not restart the mud until pause is removed.
# these sets are now nullified since we're starting awake from gdb alone now,
# changes go in utils/gdbcmds
set PORT=4000
set FLAGS=''
limit core unlim
while (1)
set DATE = (`date`);
echo "autoscript starting game $DATE" >> syslog
rm -rf syslog
touch syslog
bin/awake $PORT
echo "" >> syslog
tail -25 syslog >> log/crashlog
fgrep "self-delete" syslog >> log/delete
fgrep "Running" syslog >> log/restarts
fgrep "advanced" syslog >> log/levels
fgrep "equipment lost" syslog >> log/rentgone
fgrep "usage" syslog >> log/usage
fgrep "CONNLOG" syslog >> log/connlog
fgrep "MISCLOG" syslog >> log/misclog
fgrep "SYSLOG" syslog >> log/syslog
fgrep "WIZLOG" syslog >> log/wizlog
fgrep "DEATHLOG" syslog >> log/deathlog
fgrep "CHEATLOG" syslog >> log/cheatlog
fgrep "Bad PW" syslog >> log/badpws
# here we mail the syslog to whoever the admin is so they know the
# mud crashed (if it crashed at all)
# These aren't needed as the mud runs in GDB now.
# mv -f lib/core.1 lib/core.2 >>& ~/awake.out
# mv -f lib/core lib/core.1 >>& ~/awake.out
rm log/syslog.1
mv log/syslog.2 log/syslog.1
mv log/syslog.3 log/syslog.2
mv log/syslog.4 log/syslog.3
mv log/syslog.5 log/syslog.4
mv log/syslog.6 log/syslog.5
mv syslog log/syslog.6
touch syslog
sleep 5
if (-r .killscript) then
set DATE = (`date`);
echo "autoscript killed $DATE" >> syslog
rm .killscript
exit
endif
while (-r pause)
sleep 10
end
end