[3170] in testers
Re: sgi 8.1.0: moira locker apps
daemon@ATHENA.MIT.EDU (Craig Fields)
Fri May 30 16:27:15 1997
Date: Fri, 30 May 1997 16:27:09 -0400
From: Craig Fields <cfields@MIT.EDU>
To: ghudson@MIT.EDU
Cc: testers@MIT.EDU
> I couldn't really find any good way around this, other than going back
> to symlinks.
I don't know why I didn't think of this before, but does this count as
reasonable? Example change in last two lines...
#!/bin/sh
if [ ! -r /mit/moira ]; then
/bin/athena/attach -q moira
fi
if [ ! -x /mit/moira/arch/sgi_53/bin/moira ]; then
echo "Can't find the moira program in the moira locker."
echo "Please try again later."
exit 1
fi
PATH=/mit/moira/arch/sgi_53/bin:$PATH; export PATH
exec moira "$@"