blob: 889efe517f4bda1b0df4fd3663022081c35ddf9a (
plain) (
tree)
|
|
#!/bin/sh
#
# | _
# | o o | |
# | _ _ _ _ , | |
# | | |/ \_/ |/ |/ | | / \_|/ \
# | |_/|__/ | | |_/|_/o \/ | |_/
# | /|
# | \|
#
# ipmi.sh
#
# ipmi shared functions
#
# ~ rgoncalves.se
log() {
echo "[${0}] $@"
}
# load ipmi environment variables
# cross-referenced in next functions,
# and user-scripts.
ipmi_env() {
# export
export IPMI_DEBUG="${IPMI_DEBUG:=false}"
export IPMI_IP="${IPMI_IP:=192.168.5.100}"
export IPMI_USER="${IPMI_USER:=root}"
export IPMI_PASS="${IPMI_PASS:=calvin}"
# debug
if "${IPMI_DEBUG}"; then
for var in $(env | grep "^IPMI_"); do
log "${var}"
done
fi
# cleanup
unset var
}
# send a raw command to an ipmi host.
# ipmi environment variables are required.
ipmi_cmd() {
out=$(ipmitool -I lanplus -H ${IPMI_IP} -U ${IPMI_USER} -P ${IPMI_PASS} ${@})
echo "${out}" | awk NF
# cleanup
unset out
}
|