You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Export BMC URL |
|
# |
|
|
|
BMC_INFO="/var/run/bmc-info" |
|
|
|
if [ "$(id -u)" = "0" ]; then |
|
[ -f ${BMC_INFO} ] && . ${BMC_INFO} && \ |
|
export "${BMC_URL}" "${BMC_IPv4}" >/dev/null 2>&1 |
|
fi |
|
|
|
unset BMC_INFO
|
|
|