host.rc
author claus
Sat, 11 Dec 1993 02:53:38 +0100
changeset 0 0cb137a77319
child 2 353a88ada7c6
permissions -rw-r--r--
Initial revision

"*
 * $Header$
 * startup configuration for host specific stuff -
 * looks for a host specific init file and loads it.
 *"

|host s|

host := OperatingSystem getHostName.
host notNil ifTrue:[
    "if there is a corresponding file ..."
    ('reading host setup h_' , host , '.rc ...') printNewline.
    s := Smalltalk systemFileStreamFor:('h_' , host , '.rc').
    s notNil ifTrue:[
        s fileIn.
        s close.
    ]
].
!