summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schwarz <david.schwarz@calxeda.com>2012-02-08 14:32:38 -0600
committerDavid Schwarz <david.schwarz@calxeda.com>2012-02-08 14:32:38 -0600
commita17a91e5163ed19ebffe301c87b3a670a53c55b5 (patch)
tree3d03524a69caaf5429a3002a5c89e92408369fed
parentfb49f5e816c675fd507064ee59d43af7c98c5017 (diff)
downloadpyipmi-a17a91e5163ed19ebffe301c87b3a670a53c55b5.tar.gz
Add watchdog result types
-rw-r--r--pyipmi/watchdog.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyipmi/watchdog.py b/pyipmi/watchdog.py
new file mode 100644
index 0000000..4517e45
--- /dev/null
+++ b/pyipmi/watchdog.py
@@ -0,0 +1,17 @@
+"""ipmitool mc watchdog Results
+
+"""
+
+class WatchdogGetResult(object):
+ """Object to hold watchdog get results"""
+ pass
+
+
+class WatchdogResetResult(object):
+ """Object to hold watchdog reset results"""
+ pass
+
+
+class WatchdogOffResult(object):
+ """Object to hold watchdog off results"""
+ pass