Hello community, here is the log from the commit of package OpenIPMI for openSUSE:Factory checked in at 2015-01-05 04:44:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/OpenIPMI (Old) and /work/SRC/openSUSE:Factory/.OpenIPMI.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "OpenIPMI" Changes: -------- --- /work/SRC/openSUSE:Factory/OpenIPMI/OpenIPMI.changes 2014-11-24 11:15:49.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.OpenIPMI.new/OpenIPMI.changes 2015-01-05 04:44:18.000000000 +0100 @@ -1,0 +2,5 @@ +Sat Dec 27 17:42:00 UTC 2014 - Led <[email protected]> + +- fix bashisms in openipmi-helper script + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openipmi-helper ++++++ --- /var/tmp/diff_new_pack.rYEdWH/_old 2015-01-05 04:44:19.000000000 +0100 +++ /var/tmp/diff_new_pack.rYEdWH/_new 2015-01-05 04:44:19.000000000 +0100 @@ -31,7 +31,7 @@ IPMI_SMB_MODULE_NAME="ipmi_smb" IPMI_SI_MODULE_NAME="ipmi_si" kernel=`uname -r | cut -d. -f1-2` -if [ "${kernel}" == "2.4" ]; then +if [ "${kernel}" = "2.4" ]; then IPMI_SMB_MODULE_NAME="ipmi_smb_intf" IPMI_SI_MODULE_NAME="ipmi_si_drv" fi @@ -210,7 +210,7 @@ { local poweroff_opts="" load_hw_modules - if [ "${IPMI_POWERCYCLE}" == "yes" ]; then + if [ "${IPMI_POWERCYCLE}" = "yes" ]; then modinfo ipmi_poweroff 2>/dev/null | grep poweroff_control > /dev/null 2>&1 && \ poweroff_opts="poweroff_control=2" modinfo ipmi_poweroff 2>/dev/null | grep poweroff_powercycle > /dev/null 2>&1 && \ @@ -468,11 +468,11 @@ ############################################################################# usage () { - echo $"Usage: $0 {start|stop|status" 1>&2 - echo $" restart|condrestart|try-restart|reload|force-reload" 1>&2 - echo $" start-watchdog|stop-watchdog|status-watchdog" 1>&2 - echo $" start-powercontrol|stop-powercontrol|status-powercontrol" 1>&2 - echo $" stop-all|status-all}" 1>&2 + echo "Usage: $0 {start|stop|status" 1>&2 + echo " restart|condrestart|try-restart|reload|force-reload" 1>&2 + echo " start-watchdog|stop-watchdog|status-watchdog" 1>&2 + echo " start-powercontrol|stop-powercontrol|status-powercontrol" 1>&2 + echo " stop-all|status-all}" 1>&2 RETVAL=2 } -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
