commit | b4ef3184d5dd64b23a830fa2cf84b636827799da | [log] [tgz] |
---|---|---|
author | Norman James <njames@us.ibm.com> | Thu Dec 03 17:54:35 2015 -0600 |
committer | Norman James <njames@us.ibm.com> | Thu Dec 03 17:54:35 2015 -0600 |
tree | 8eb2a080f792a8c942f5aa110ae0242b183e7672 | |
parent | af0bda4a21164c4dcd1ca3fdf237474f1d56d84c [diff] |
add hard reboot method
diff --git a/bin/chassis_control.py b/bin/chassis_control.py index 8d19d1e..6a3b9f5 100755 --- a/bin/chassis_control.py +++ b/bin/chassis_control.py
@@ -128,6 +128,15 @@ self.powerOn(); else: self.Set(DBUS_NAME,"reboot",1) + self.powerOff() + return None + + def softReboot(self): + print "Soft Rebooting" + if self.getPowerState() == POWER_OFF: + self.powerOn(); + else: + self.Set(DBUS_NAME,"reboot",1) self.softPowerOff() return None