1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env python3
"""
This module checks if for a specifyed machine the RCMS jobcontrol daemon is
running.
(Can be imported, provides method srvChk(srv) )
"""
import sys, os.path
def srvChk(srv):
"""
uses server name to
"""
pass
if __name__=="__main__":
|