51 lines
2.1 KiB
Diff
51 lines
2.1 KiB
Diff
From 342570c5a5af4c277be283507ef7898a078e2df9 Mon Sep 17 00:00:00 2001
|
|
From: mmartinv <32071463+mmartinv@users.noreply.github.com>
|
|
Date: Fri, 16 Nov 2018 12:55:58 +0100
|
|
Subject: [PATCH] Fix 'log_expect' in fence_hpblade.py
|
|
|
|
Update the 'log_expect' call to the new method definition.
|
|
---
|
|
agents/hpblade/fence_hpblade.py | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/agents/hpblade/fence_hpblade.py b/agents/hpblade/fence_hpblade.py
|
|
index b2cc94a3..fbc89f61 100644
|
|
--- a/agents/hpblade/fence_hpblade.py
|
|
+++ b/agents/hpblade/fence_hpblade.py
|
|
@@ -16,7 +16,7 @@
|
|
|
|
def get_enclosure_type(conn, options):
|
|
conn.send_eol("show enclosure info")
|
|
- conn.log_expect(options, options["--command-prompt"], int(options["--shell-timeout"]))
|
|
+ conn.log_expect(options["--command-prompt"], int(options["--shell-timeout"]))
|
|
|
|
type_re=re.compile(r"^\s*Enclosure Type: (\w+)(.*?)\s*$")
|
|
enclosure="unknown"
|
|
@@ -39,7 +39,7 @@ def get_power_status(conn, options):
|
|
powrestr = "^\\s*Power: (.*?)\\s*$"
|
|
|
|
conn.send_eol(cmd_send)
|
|
- conn.log_expect(options, options["--command-prompt"], int(options["--shell-timeout"]))
|
|
+ conn.log_expect(options["--command-prompt"], int(options["--shell-timeout"]))
|
|
|
|
power_re = re.compile(powrestr)
|
|
status = "unknown"
|
|
@@ -72,7 +72,7 @@ def set_power_status(conn, options):
|
|
conn.send_eol("poweron " + dev + options["--plug"])
|
|
elif options["--action"] == "off":
|
|
conn.send_eol("poweroff " + dev + options["--plug"] + " force")
|
|
- conn.log_expect(options, options["--command-prompt"], int(options["--shell-timeout"]))
|
|
+ conn.log_expect(options["--command-prompt"], int(options["--shell-timeout"]))
|
|
|
|
def get_instances_list(conn, options):
|
|
outlets = {}
|
|
@@ -84,7 +84,7 @@ def get_instances_list(conn, options):
|
|
listrestr = "^\\s*(\\d+)\\s+(.*?)\\s+(.*?)\\s+OK\\s+(.*?)\\s+(.*?)\\s*$"
|
|
|
|
conn.send_eol(cmd_send)
|
|
- conn.log_expect(options, options["--command-prompt"], int(options["--shell-timeout"]))
|
|
+ conn.log_expect(options["--command-prompt"], int(options["--shell-timeout"]))
|
|
|
|
list_re = re.compile(listrestr)
|
|
for line in conn.before.splitlines():
|