- Timestamp:
- Mar 22, 2012, 2:24:27 AM (13 years ago)
- Location:
- projects/proliantusbkey/0.9.6
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
projects/proliantusbkey/0.9.6/README
r1436 r1437 89 89 There are currently 5 variable that can be customized: 90 90 Lines beginning with a "#" will be ignored. 91 - ECF_IP: The IP of the iLO interface92 - ECF_NETMASK: The IP netmask93 - ECF_GW: The IP gateway94 - ECF_LICENCE: The iLO extended licence that should be associated to the iLO91 - ILO_IP: The IP of the iLO interface 92 - ILO_NETMASK: The IP netmask 93 - ILO_GW: The IP gateway 94 - ILO_LICENCE: The iLO extended licence that should be associated to the iLO 95 95 interface 96 - ECF_ADMIN_PASSWD: The new iLO Administrator's password.96 - ILO_ADMIN_PASSWD: The new iLO Administrator's password. 97 97 98 98 interactive: -
projects/proliantusbkey/0.9.6/config/ilo
r1436 r1437 1 ECF_IP="10.4.82.152"2 ECF_NETMASK="255.255.255.0"3 ECF_GW="10.4.82.1"1 ILO_IP="10.4.82.152" 2 ILO_NETMASK="255.255.255.0" 3 ILO_GW="10.4.82.1" 4 4 5 # ECF_LICENSE="xxxxxxxxxxxx"6 ECF_ADMIN_PASSWD="something"5 #ILO_LICENSE="xxxxxxxxxxxx" 6 ILO_ADMIN_PASSWD="something" 7 7 -
projects/proliantusbkey/0.9.6/customized/ssstk/deploy.sh
r1436 r1437 47 47 # Source the customization file 48 48 [ -f ${ILO_CONFIG_FILE} ] && dos2unix ${ILO_CONFIG_FILE} && . ${ILO_CONFIG_FILE} 49 [ "x$ ECF_IP" != "x" ] && OPTS="--ip $ECF_IP"50 [ "x$ ECF_NETMASK" != "x" ] && OPTS="$OPTS --netmask $ECF_NETMASK"51 [ "x$ ECF_GW" != "x" ] && OPTS="$OPTS --gw $ECF_GW"52 [ "x$ ECF_LICENSE" != "x" ] && OPTS="$OPTS --license $ECF_LICENSE"53 [ "x$ ECF_ADMIN_PASSWD" != "x" ] && OPTS="$OPTS --password $ECF_ADMIN_PASSWD"49 [ "x$ILO_IP" != "x" ] && OPTS="--ip $ILO_IP" 50 [ "x$ILO_NETMASK" != "x" ] && OPTS="$OPTS --netmask $ILO_NETMASK" 51 [ "x$ILO_GW" != "x" ] && OPTS="$OPTS --gw $ILO_GW" 52 [ "x$ILO_LICENSE" != "x" ] && OPTS="$OPTS --license $ILO_LICENSE" 53 [ "x$ILO_ADMIN_PASSWD" != "x" ] && OPTS="$OPTS --password $ILO_ADMIN_PASSWD" 54 54 # Do the cleanup and customization of the iLO config file 55 55 dos2unix ${ILO_FILE}
Note:
See TracChangeset
for help on using the changeset viewer.