From 9fa149f6e2a5a0d3233644298a5d50db3f8b6748 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 24 Sep 2007 14:30:53 -0400 Subject: Basic plugin for checking SMART status on drives. --- client/test_func.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'client/test_func.py') diff --git a/client/test_func.py b/client/test_func.py index 6362b85..bcce45d 100644 --- a/client/test_func.py +++ b/client/test_func.py @@ -5,10 +5,11 @@ import xmlrpclib -TEST_PROCESS = True +TEST_PROCESS = False TEST_VIRT = False -TEST_SERVICES = True -TEST_HARDWARE = True +TEST_SERVICES = False +TEST_HARDWARE = False +TEST_SMART = True # get a connecton (to be replaced by client lib logic) s = xmlrpclib.ServerProxy("http://127.0.0.1:51234") @@ -16,9 +17,12 @@ s = xmlrpclib.ServerProxy("http://127.0.0.1:51234") # here's the basic test... print s.test.add(1, 2) +if TEST_SMART: + print s.smart.info() + if TEST_PROCESS: print s.process.info() - print s.process.pkill("thunderbird") + # print s.process.pkill("thunderbird") # here's the service module testing if TEST_SERVICES: -- cgit