Changeset 1437 in ProjectBuilder


Ignore:
Timestamp:
Mar 22, 2012, 2:24:27 AM (12 years ago)
Author:
Bruno Cornec
Message:

-Use the more generic ILO prefix for variables

Location:
projects/proliantusbkey/0.9.6
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • projects/proliantusbkey/0.9.6/README

    r1436 r1437  
    8989There are currently 5 variable that can be customized:
    9090Lines beginning with a "#" will be ignored.
    91 - ECF_IP: The IP of the iLO interface
    92 - ECF_NETMASK: The IP netmask
    93 - ECF_GW: The IP gateway
    94 - ECF_LICENCE: The iLO extended licence that should be associated to the iLO
     91- 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
    9595interface
    96 - ECF_ADMIN_PASSWD: The new iLO Administrator's password.
     96- ILO_ADMIN_PASSWD: The new iLO Administrator's password.
    9797
    9898interactive:
  • 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"
     1ILO_IP="10.4.82.152"
     2ILO_NETMASK="255.255.255.0"
     3ILO_GW="10.4.82.1"
    44
    5 #ECF_LICENSE="xxxxxxxxxxxx"
    6 ECF_ADMIN_PASSWD="something"
     5#ILO_LICENSE="xxxxxxxxxxxx"
     6ILO_ADMIN_PASSWD="something"
    77
  • projects/proliantusbkey/0.9.6/customized/ssstk/deploy.sh

    r1436 r1437  
    4747    # Source the customization file
    4848    [ -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"
    5454    # Do the cleanup and customization of the iLO config file
    5555    dos2unix ${ILO_FILE}
Note: See TracChangeset for help on using the changeset viewer.