mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
*** rundgd.old Thu Jan 16 03:13:15 1997
|
|
--- rundgd Thu Jan 16 03:28:42 1997
|
|
***************
|
|
*** 1,10 ****
|
|
#!/bin/sh
|
|
|
|
passwd=HNAMEPASS
|
|
while true
|
|
do
|
|
! mv 2.4.5/lpmud.log 2.4.5/lpmud.log.old
|
|
! date > 2.4.5/lpmud.log
|
|
! hname 6047 $passwd &
|
|
! driver lpmud.dgd >> 2.4.5/lpmud.log 2>&1
|
|
done > /dev/null 2>&1
|
|
--- 1,11 ----
|
|
#!/bin/sh
|
|
|
|
+ dgd=/usr/local/dgd
|
|
+ cd $dgd/lpmud-2.4.5
|
|
passwd=HNAMEPASS
|
|
while true
|
|
do
|
|
! mv lpmud.log lpmud.log.old
|
|
! date > lpmud.log
|
|
! $dgd/bin/hname 2000 $passwd &
|
|
! $dgd/bin/driver $dgd/lpmud.dgd >> lpmud.log 2>&1
|
|
done > /dev/null 2>&1
|
|
*** lpmud.dgd.old Thu Jan 16 03:10:34 1997
|
|
--- lpmud.dgd Thu Jan 16 03:13:00 1997
|
|
***************
|
|
*** 1,6 ****
|
|
telnet_port = 2000; /* telnet port number */
|
|
binary_port = 1999; /* binary port number */
|
|
! directory = "/usr/local/mud/2.4.5";/* base directory (MUST be absolute) */
|
|
users = 40; /* max # of users */
|
|
editors = 41; /* max # of editor sessions */
|
|
ed_tmpfile = "../tmp/ed"; /* proto editor tmpfile */
|
|
--- 1,6 ----
|
|
telnet_port = 2000; /* telnet port number */
|
|
binary_port = 1999; /* binary port number */
|
|
! directory = "/usr/local/dgd/lpmud-2.4.5";/* base directory (MUST be absolute) */
|
|
users = 40; /* max # of users */
|
|
editors = 41; /* max # of editor sessions */
|
|
ed_tmpfile = "../tmp/ed"; /* proto editor tmpfile */
|