-
-
Notifications
You must be signed in to change notification settings - Fork 644
/
Copy pathservCTRL.py
51 lines (35 loc) · 1.13 KB
/
servCTRL.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import subprocess
import shlex
import argparse
import os
class servCTRL:
pidfile = '/usr/local/CyberCP/WebTerminal/pid'
def prepareArguments(self):
parser = argparse.ArgumentParser(description='CyberPanel Policy Control Parser!')
parser.add_argument('function', help='Specific a operation to perform!')
return parser.parse_args()
def start(self):
if os.path.exists(servCTRL.pidfile):
self.stop()
command = '/usr/local/CyberCP/bin/python /usr/local/CyberCP/WebTerminal/CPWebSocket.py'
subprocess.Popen(shlex.split(command))
def stop(self):
try:
path = servCTRL.pidfile
command = 'kill -9 %s' % (open(path, 'r').read())
subprocess.Popen(shlex.split(command))
except:
pass
def main():
policy = servCTRL()
args = policy.prepareArguments()
## Website functions
if args.function == "start":
policy.start()
elif args.function == "stop":
policy.stop()
elif args.function == "restart":
policy.stop()
policy.start()
if __name__ == "__main__":
main()