home *** CD-ROM | disk | FTP | other *** search
- ; ***************************************************************
- ;
- ; This script has been developed to install NetWare ODI Drivers.
- ; Date: 03/27/97
- ;
- ; ***************************************************************
- @SyntaxVersion 1.03
- @Version 3.00
-
- CopyToServer system, lic_api.nlm, '', ''
- CopyToServer system\\temp, pi_icmd.nlm, '', ''
- Command temp\\PI_ICMD
- GetPath SystemDrive, 1, 'sys:system', ''
-
- ValueSet InstallANY, 0
- ValueSet InstallSPACK, 0
- ValueSet InstallBORDER, 0
- ValueSet InstallNIAS, 0
-
- ; ***************************************************************
- @FileSet
- Description: "Novell Internet Access Server"
- Name: NIAS
- CLASS: OPTIONAL
- ATTRIBUTE:0, 1
- HELP: "Novell Internet Access Server requires the IntranetWare
- Support Pack 3 or higher version be installed. IntranetWare Support Pack
- 3 will be automatically installed if it is not present, or its version
- is lesser or equal to 3.0"
-
- ValueSet InstallNIAS, 1
- @EndFileSet
-
- ; ***************************************************************
- @FileSet
- Description: "Novell BorderManager"
- Name: BORDER
- CLASS: OPTIONAL
- ATTRIBUTE:0, 1
- HELP: "Novell BorderManager requires the Novell Internet Access
- Server be installed. Novell Internet Access Server will be automatically
- installed if the Novell BorderManager is marked but the Novell Internet Access
- Server is unmarked. IntranetWare Support Pack 3 will also be automatically
- installed if it is not present, or its version is lesser or equal to 3.0."
-
-
- ValueSet InstallBORDER, 1
- @EndFileSet
-
- ; ***************************************************************
-
- GotoIfEqual %{InstallNIAS}, 1, INSTALL_START
- GotoIfEqual %{InstallBORDER}, 1, INSTALL_START
- Display 0, "Nothing is marked, so no product will be installed."
- Goto IPS_START
-
- Label INSTALL_START
- Display 1, "Welcome to the Novell BorderManager installation program.
- This program will install Novell BorderManager to your IntranetWare server.
- If required, IntranetWare Support Pack 3.0 will be installed.\n
- \nPress <ESC> to cancel."
- ;----- Check that the OS is 4.11 -----
- GotoIfNEqual %{PI_OSMajorVersion}, 4, WRONG_OS
- GotoIfNEqual %{PI_OSMinorVersion}, 11, WRONG_OS
- GotoIfNEqual %{PI_OSRevision}, 0, WRONG_OS
-
- GotoIfNEqual %{InstallBORDER}, 1, CHECK_SPACK
- ValueSet InstallNIAS, 1
-
- Label CHECK_SPACK
- ReadProductRecord SPACK, 0, ID, ccode
- GotoIfNEqual %{ccode},0, SET_SPACK
- SGotoIfLsEqual %{ID}, "3.0", SET_SPACK
- ValueSet InstallSPACK, 0
- Goto IPS_START
-
- Label SET_SPACK
- ValueSet InstallSPACK, 1
- Goto IPS_START
-
- Label WRONG_OS
- Display 0, "This version of the InternetWare Support Pack only works for
- IntranetWare or NetWare 4.11."
- ValueSet InstallANY, 0
- ValueSet InstallSPACK, 0
- ValueSet InstallBORDER, 0
- ValueSet InstallNIAS, 0
-
- Label IPS_START
- @IncludeFile
- File: "sup_pack\\411spack.ips"
- @EndIncludeFile
-
- @IncludeFile
- File: "nias41\\nias.ips"
- @EndIncludeFile
-
- @IncludeFile
- File: "border21\\border.ips"
- @EndIncludeFile
-