move pcucontrol package into pcucontrol module.
[monitor.git] / pcucontrol / models / WTIIPS4.py
diff --git a/pcucontrol/models/WTIIPS4.py b/pcucontrol/models/WTIIPS4.py
deleted file mode 100644 (file)
index aebde31..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-from pcucontrol.reboot import *
-
-class WTIIPS4(PCUControl):
-       supported_ports = [23]
-       def run_telnet(self, node_port, dryrun):
-               self.transport.open(self.host)
-               self.transport.sendPassword(self.password, "Enter Password:")
-
-               self.transport.ifThenSend("IPS> ", "/Boot %s" % node_port)
-               if not dryrun:
-                       self.transport.ifThenSend("Sure? (Y/N): ", "N")
-               else:
-                       self.transport.ifThenSend("Sure? (Y/N): ", "Y")
-
-               self.transport.ifThenSend("IPS> ", "")
-
-               self.transport.close()
-               return 0