Mask ipmitool credentials 41/15741/2
authorPeter Barabas <peter.barabas@ericsson.com>
Thu, 16 Jun 2016 11:51:29 +0000 (13:51 +0200)
committerJonas Bjurel <jonas.bjurel@ericsson.com>
Thu, 16 Jun 2016 13:37:13 +0000 (13:37 +0000)
Change-Id: I328432e6b30437e8a83065859cd80358d4c3c468
Signed-off-by: Peter Barabas <peter.barabas@ericsson.com>
deploy/dha_adapters/zte_adapter.py

index f6279fb..1e610ca 100644 (file)
@@ -27,14 +27,15 @@ class ZteAdapter(IpmiAdapter):
         WAIT_LOOP = 600
         log('RESET Node %s' % node_id)
         cmd_prefix = self.ipmi_cmd(node_id)
-        state = exec_cmd('%s chassis power status' % cmd_prefix)
+        state = exec_cmd('%s chassis power status' % cmd_prefix, mask_args=[8,10])
         if state == 'Chassis Power is on':
             was_shut_off = False
             done = False
-            exec_cmd('%s chassis power cycle' % cmd_prefix)
+            exec_cmd('%s chassis power cycle' % cmd_prefix, mask_args=[8,10])
             for i in range(WAIT_LOOP):
                 state, _ = exec_cmd('%s chassis power status' % cmd_prefix,
-                                    False)
+                                    check=False,
+                                    mask_args=[8,10])
                 if state == 'Chassis Power is off':
                     was_shut_off = True
                 elif state == 'Chassis Power is on' and was_shut_off: