[16875] in Athena Bugs
sun4 8.2.19: infoagents
daemon@ATHENA.MIT.EDU (Terran Melconian)
Wed Jun 9 20:13:26 1999
Message-Id: <199906100013.UAA20703@m37-332-4>
To: bugs@MIT.EDU
Cc: tmelcon@MIT.EDU
Date: Wed, 09 Jun 1999 20:13:19 EDT
From: Terran Melconian <tmelcon@MIT.EDU>
System name: m37-332-4.mit.edu
Type and version: Ultra-5_10 8.2.19
Display type: afb
What were you trying to do?
Execute the United States version of Netscape 3.01
What's wrong:
The /mit/infoagents/arch/share/bin/usnetscape script needs to be
updated (is it deprecated now?). It tries to access the authbin
directory by looking in
/mit/infoagents/arch/${ATHENA_SYS}/authbin
However, the directory structure seems to have been recently updated
so as to no longer include an "authbin" directory, but instead have an
"MIT-only" directory.
The absence of the authbin directory causes the usnetscape script to
think that it is failing to access the directory because the user does
not have sufficient privileges, and it thus complains that the user
needs authentication and should type "renew" regardless, of whether or
not the user is actually authenticated.
A patch is included below.
29c29
< authbin=/mit/infoagents/arch/${ATHENA_SYS}/authbin
---
> authbin=/mit/infoagents/arch/${ATHENA_SYS}/MIT-only
35c35
< NETSCAPEPATH=$authbin/MozillaUS${release}
---
> NETSCAPEPATH=$authbin/netscape-${release_dot}/netscape
150,151c150,151
< if xset -q | grep -s /mit/infoagents/lib/X11/fonts > /dev/null; then
< : font path is ok already
---
> if xset -q | grep -s /infoagents/ > /dev/null; then
> : font path is ok already
153,154c153,155
< xset fp+ /mit/infoagents/lib/X11/fonts/
< xset fp rehash
---
> fontdir=`cd /mit/infoagents/arch/share/lib/X11/.big_endian; pwd`/
> xset fp+ ${fontdir}
> xset fp rehash