[6736] in Athena Bugs
mkserv on DS3100 recently installed will fail
daemon@ATHENA.MIT.EDU (daemon@ATHENA.MIT.EDU)
Sat Dec 29 13:34:00 1990
From: epeisach@ATHENA.MIT.EDU
Date: Sat, 29 Dec 90 13:33:49 -0500
To: probe@ATHENA.MIT.EDU
Cc: bugs@ATHENA.MIT.EDU
mkserv has the following line:
case "${MACH}" in
DS3100)
SITE=var
;;
*)
SITE=site
;;
esac
It should be:
case "${MACH}" in
DS3100|MIPS)
SITE=var
;;
*)
SITE=site
;;
esac
The /srvd/.rvdinfo contains the keyword MIPS but after an update, will
contain DS3100.
I feel that the /srvd/.rvdinfo should contain MIPS.
Several solutions exist to the problem:
a) modify mkserv as above.
b) modify phase2.sh in creating /etc/version to change the machine type
listed.
I prefer (b) and will make changes to this affect. In future releases, mkserv
will have to be a little more intelligent as we add other types of
machines. (like DS5400 and DS5000).
Ezra