T.R | Title | User | Personal Name | Date | Lines |
---|
938.1 | | QUARK::LIONEL | B - L - Oh, I don't know! | Tue Jun 13 1989 21:21 | 5 |
| I do it in my system startup batch job by just doing a DEFINE/SYSTEM.
Never had any problem with it.
Steve
|
938.2 | try this | WSINT::MCLEMAN | These go to eleven... | Wed Jun 14 1989 08:54 | 15 |
| The following command file is submitted after 1 min on our cluster to make
the logical point elsewhere.
$! define the DECW$BOOK logical, but only after DECwindows defines theirs.
$ check_for_log:
$ if F$EDIT(F$TRNLNM("DECW$BOOK","DECW$LOGICAL_NAMES"),"TRIM") .nes. "" then -
goto define_new_name
$ wait 00:00:05 ! spin a bit
$ goto check_for_log
$ define_new_name:
$ def/sys/exe/table=decw$logical_names decw$book tools$:[decw$book]
$exit
|
938.3 | Use system table | JAMMER::JACK | Marty Jack | Wed Jun 14 1989 10:11 | 7 |
| If you put it in the system table, it's searched before
DECW$LOGICAL_NAMES, so Steve's technique works, and there's no need to
do .-1. I have it in the system table with no problem.
(BTW, no one in our cluster has a paper docset -- we're very happy with
just ConOLD.)
|
938.4 | Don't edit DECW$START*.COM | AIRBAG::SWATKO | Brother, can 'ya spare a Meg? | Wed Jun 14 1989 11:36 | 10 |
| Editing DECW$STARTAPPS is definitely the WRONG thing to do. Do
$ DEFINE/SYSTEM DECW$BOOK whatever
Since the system table gets searched before the decwindows logical name
table, it will do the right thing regardless of where it gets defined (ie.
do it before or after DECW$STARTUP - it doesn't matter)
-Mike
|