Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=6c9... Commit: 6c97937613317137f34286656068b5ee33108198 Parent: c62d62119906b6c272ff3cac169c287313afdb92 Author: Marek 'marx' Grac mgrac@redhat.com AuthorDate: Mon Feb 21 20:55:30 2011 +0100 Committer: Fabio M. Di Nitto fdinitto@redhat.com CommitterDate: Wed Mar 16 15:26:50 2011 +0100
fence_wti: Unable to parse output when splitted into several screens (2/2)
Minor changes to previous patch. Power ON/OFF now works as expected
Resolves: rhbz#678522 --- fence/agents/wti/fence_wti.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/fence/agents/wti/fence_wti.py b/fence/agents/wti/fence_wti.py index d05676b..8caa4c2 100644 --- a/fence/agents/wti/fence_wti.py +++ b/fence/agents/wti/fence_wti.py @@ -28,13 +28,12 @@ def get_power_status(conn, options): conn.send("/S"+"\r\n")
if isinstance(options["-c"], list): - re_all = options["-c"] + re_all = list(options["-c"]) else: re_all = [options["-c"]] re_next = re.compile("Enter: ", re.IGNORECASE) re_all.append(re_next)
- conn.send("/S"+"\r\n") result = conn.log_expect(options, re_all, int(options["-Y"])) listing = conn.before if result == (len(re_all) - 1):
cluster-commits@lists.stg.fedorahosted.org