diff options
author | Michael DeHaan <mdehaan@mdehaan.rdu.redhat.com> | 2007-09-21 18:23:31 -0400 |
---|---|---|
committer | Michael DeHaan <mdehaan@mdehaan.rdu.redhat.com> | 2007-09-21 18:23:31 -0400 |
commit | a64a59585222a0b10a1e6181c67d53dde6570a34 (patch) | |
tree | 2a2e882b86ff0a78c9a6dc9ceac859651489d0e4 /client/test_func.py | |
parent | 74b4897547980bf8512be7806d1ee8f5ef28aaf8 (diff) | |
download | func-a64a59585222a0b10a1e6181c67d53dde6570a34.tar.gz func-a64a59585222a0b10a1e6181c67d53dde6570a34.tar.xz func-a64a59585222a0b10a1e6181c67d53dde6570a34.zip |
Added kill and pkill to the process module
Diffstat (limited to 'client/test_func.py')
-rw-r--r-- | client/test_func.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/test_func.py b/client/test_func.py index 866af36..6362b85 100644 --- a/client/test_func.py +++ b/client/test_func.py @@ -18,11 +18,12 @@ print s.test.add(1, 2) if TEST_PROCESS: print s.process.info() + print s.process.pkill("thunderbird") # here's the service module testing if TEST_SERVICES: print s.service.restart("httpd") - + if TEST_HARDWARE: print s.hardware.info() |