- improved error message when ipmitool is not installed

This commit is contained in:
Babak Farrokhi 2015-08-24 19:31:33 +04:30
parent 4582df1102
commit d30f90b1ed

2
ipmi_
View File

@ -54,7 +54,7 @@ FreeBSD compatibility by Babak Farrokhi (farrokhi@FreeBSD.org)
#### Parse commandline to determine what the job is
CONFIG=no
IPMICMD=`which ipmitool` || exit 1
IPMICMD=`which ipmitool` || ( echo "ipmitool not found" ; exit 1 )
case $1 in
autoconf)