cluster: STABLE3 - fence_drac5: make "port" a synonym of "module_name" for drac5

Marek Grác marx at fedoraproject.org
Mon Aug 2 09:07:34 UTC 2010


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=a598fada75f0e138b715b5da11d33b3040a2c903
Commit:        a598fada75f0e138b715b5da11d33b3040a2c903
Parent:        db1a93f32b36da95a19716ed1b6832b04f4c68dd
Author:        Marek 'marx' Grac <mgrac at redhat.com>
AuthorDate:    Fri Jul 30 17:58:01 2010 +0200
Committer:     Marek 'marx' Grac <mgrac at redhat.com>
CommitterDate: Mon Aug 2 11:05:58 2010 +0200

fence_drac5: make "port" a synonym of "module_name" for drac5

Resolves: rhbz#619096
---
 fence/agents/lib/fencing.py.py |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/fence/agents/lib/fencing.py.py b/fence/agents/lib/fencing.py.py
index 84794dd..3289eb5 100644
--- a/fence/agents/lib/fencing.py.py
+++ b/fence/agents/lib/fencing.py.py
@@ -513,6 +513,11 @@ def process_input(avail_opt):
 			else:
 				longopt_list.append(all_opt[k]["longopt"])
 
+	## Compatibility layer
+	if avail_opt.count("module_name") == 1:
+		getopt_string += "n:"
+		longopt_list.append("plug=")
+	
 	##
 	## Read options from command line or standard input
 	#####
@@ -539,6 +544,8 @@ def process_input(avail_opt):
 		z = dict(opt)
 		if z.has_key("-T") == 1:
 			z["-o"] = "status"
+		if z.has_key("-n") == 1:
+			z["-m"] = z["-n"]
 
 		opt = z
 		##
@@ -568,6 +575,8 @@ def process_input(avail_opt):
 				name = "module_name"
 			elif name == "action" and 1 == avail_opt.count("io_fencing"):
 				name = "io_fencing"
+			elif name == "port" and 1 == avail_opt.count("drac_version"):
+				name = "module_name"
 
 			##
 			######


More information about the cluster-commits mailing list