; ; *-*-* TINSTALL.CSD *-*-* ; ; This Submit file performs the tape installation procedure for products ; installed on an iRMX system. This Submit file cannot be used to install ; the iRMX Operating System itself, only related products. ; ; It attaches the tape device, creates an installation directory in :work:, ; installs the tape in work, detaches the tape device, submits the product ; specific installation file, and then deletes the installation directory ; from :work:. ; ; Invocation: ; tinstall device_name ; or ; submit :config:cmd/tinstall(device_name) ; ; Where: device_name is the physical device name of the tape device from ; which you will be installing the product. Note that the ; alias form of invocation does not allow parentheses. ; ; ; Permit the :work: directory for installation. ; permit :work:,:work:install dlau u=0 ; ; Delete the :work:install if left over from a previous installation. ; deletedir :work:install createdir :work:install ; ; Attach the tape drive. ; attachdevice %0 as in_tape p ; ; Install the tape into :work:. ; copy :config:cmd/stuffy restore :in_tape: over :work:install ; dd :in_tape: ; ; Move the files into the iRMX directory structure from :work:. ; submit :work:install/install ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* ; ; The tape installation is complete. ; ;*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*