[Cluster-devel] cluster/fence/agents/ilo fence_ilo.pl

rmccabe at sourceware.org rmccabe at sourceware.org
Tue Feb 20 22:02:55 UTC 2007


CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL4
Changes by:	rmccabe at sourceware.org	2007-02-20 22:02:55

Modified files:
	fence/agents/ilo: fence_ilo.pl 

Log message:
	- Support for HP ilo2

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/fence/agents/ilo/fence_ilo.pl.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.3.2.2&r2=1.3.2.3

--- cluster/fence/agents/ilo/fence_ilo.pl	2007/02/12 20:33:58	1.3.2.2
+++ cluster/fence/agents/ilo/fence_ilo.pl	2007/02/20 22:02:54	1.3.2.3
@@ -346,13 +346,15 @@
 	# As of firmware version 1.71 (RIBCL 2.21) The SET_HOST_POWER command
 	# is no longer available.  HOLD_PWR_BTN and PRESS_PWR_BTN are used 
 	# instead now :(
-	if ($ribcl_vers < 2.21 )
+	if ($ribcl_vers < 2.21)
 	{
 		sendsock $socket, "<SET_HOST_POWER HOST_POWER = \"$state\"/>\n";
 	}
 	else
 	{
-		if ($state eq "Y" )
+		if ($ribcl_vers > 2.21) {
+			sendsock $socket, "<HOLD_PWR_BTN/>\n";
+		} elsif ($state eq "Y" )
 		{ 
 			sendsock $socket, "<PRESS_PWR_BTN/>\n";
 		} 




More information about the Cluster-devel mailing list