Initial add of defaria.com
[clearscm.git] / defaria.com / Computers / code / adm / bin / adl-config.src
1 ################################################################################
2 #
3 # File:         adl-config.src
4 # Description:  Parameter Source File for the ADL system configuration script
5 #               adl-config. This file is required by the adl-config script
6 #               in order to run.
7 #               See below for useful comments.
8 # Author:       Kevin Lister (C) - kel@cup.hp.com
9 # Date:         3.11.99
10 # Language:     Korn Shell
11 #
12 # (c) Copyright 1991, Hewlett-Packard Company, all rights reserved.
13 #
14 # Revision History
15 # 4.1.99      kel added the WORKSTATION variable. Setting the WORKSTATION
16 #             variable to yes will set the machine up with a graphics console
17 #             login using CDE.
18 #
19 ################################################################################
20 # Useful (hopefully) Comments Section
21 #
22 # Do not make your changes to the varibales in the comment section. Change
23 # the variables at the end of this file.
24 #
25 # Below you will find all of the ENV variables that the adl-config script
26 # will use to configure the system.
27 # Descriptions for these variables can be found below, read on.
28 #
29 # Set the INTERACTIVE ENV variable to yes if you wish to have a chance to
30 view
31 # the configuration parameters the script will use before proceeding. Set to
32 # no otherwise.
33 #
34 # INTERACTIVE=yes
35 #
36 # Set the WORKSTATION variable to yes if you are installing a system that
37 will
38 # have a graphics console monitor attached. Setting WORKSTATION to no
39 disbales
40 # CDE on the console.
41 #
42 # WORKSTATION=no
43 #
44 # You can have ClearCase 3.2 installed automatically by setting CLEARCASE
45 # to yes. If you do not want ClearCase, set to no.
46 #
47 # CLEARCASE=yes
48 #
49 # If you want the Patch bundle (see below) and Optional Software installed
50 # set SWINSTALL to yes.
51 #
52 # SWINSTALL=yes
53 #
54 # If you plan to use a 100Mbit network interface then set FAST_ENET to yes
55 # to have the correct drivers installed. Set to no if you don't.
56 #
57 # FAST_ENET=yes
58 #
59 # Set the location of the logfile for the configure script using the LOGFILE
60 # variable.
61 #
62 # LOGFILE=/adl-config.log
63 #
64 # The /etc/motd file will be set up with the information contained in the next
65 # several variables. The /etc/issue and /etc/gettydefs files will also be
66 # setup by using the MACHINE_NAME variable. You should set these to something
67 # that makes sense.
68 #
69 # OWNER_NAME="ADL Support"
70 # OWNER_EMAIL=adl-support@cup.hp.com
71 # OWNER_EXTENSION=t-447-5790
72 # MACHINE_USAGE="X Terminal Server"
73 # LOCATION=RDC
74 # MACHINE_NAME=Generic
75 #
76 # The next several variables set up the depot server name, depot path and
77 # names of the software bundles and products to install. It is likely that you
78 # you will only need to change ENET_DRVRS. Set ENET_DRVRS to 100BT-HSC for a
79 # J282 (780). Set ENET_DRVRS to SX00306 for a 755. The default for XTERM_SVR
80 # is "". If you really don't want patches and optional software then set
81 # PATCHES and OPTIONAL to "". You should never need to modify PRODUCTS, DEPOT
82 # or OPTIONS.
83 #
84 # PATCHES=Patches-Generic
85 # OPTIONAL="OptionalSoftware SysMonSoftware VUEtoCDE"
86 # XTERM_SVR="ENWARE netstation"
87 # ENET_DRVRS=100BT-HSC
88 # ENET_DRVRS=SX00306
89 # PRODUCTS="$PATCHES $OPTIONAL $XTERM_SVR $ENET_DRVRS"
90 # DEPOT=adliux01:/depots/10.20
91 # OPTIONS="autoreboot=true"
92 #
93 # Finally, the next several variables set up the ftp server, directory and
94 # filename of the shell archive that the script uses to unpack all kinds
95 # of useful files and symlinks. You should never have to modify these.
96 #
97 # FTP_SERVER=15.0.98.138
98 # FTP_USER=anonymous
99 # FTP_PASSWD=$LOGNAME@$(uname -n).cup.hp.com
100 # SHAR_DIR=productivity/adl-config
101 # SHAR_FILE=adl-config.shar
102 #
103 # END of Useful Comments Section
104 ################################################################################
105
106 #
107 ##
108 ### Change these to suit your fancy.
109 ##
110 #
111
112 INTERACTIVE=yes
113 WORKSTATION=no
114 CLEARCASE=yes
115 SWINSTALL=yes
116 FAST_ENET=no
117 LOGFILE=/adl-config.log
118
119 #
120 ##
121 ### /etc/motd setup
122 ##
123 #
124
125 OWNER_NAME="ADL Support"
126 OWNER_EMAIL=adl-support@cup.hp.com
127 OWNER_EXTENSION=t-447-5790
128 MACHINE_USAGE="Change Me"
129 LOCATION=RDC
130 MACHINE_NAME=GENERIC
131
132 #
133 ##
134 ### Patches and Optional Software
135 ##
136 #
137
138 PATCHES=Patches-Generic
139 OPTIONAL="OptionalSoftware SysMonSoftware VUEtoCDE"
140 XTERM_SVR=""
141 ENET_DRVRS=""
142 PRODUCTS="$PATCHES $OPTIONAL $XTERM_SVR $ENET_DRVRS"
143
144 #
145 ##
146 ### Depot Server Information
147 ##
148 #
149
150 DEPOT=adliux01:/depots/10.20
151 OPTIONS="autoreboot=true"
152
153 #
154 ##
155 ### Shell Archive Server and Location
156 ##
157 #
158
159 FTP_SERVER=15.0.98.138
160 FTP_USER=anonymous
161 FTP_PASSWD=$LOGNAME@$(uname -n).cup.hp.com
162 SHAR_DIR=productivity/adl-config
163 SHAR_FILE=adl-config.shar