blob: a75b0c507e0936a7bec9517d28b1f32c3f3662fe (
plain)
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
|
##
# other modules
import sub_process
# our modules
import func_module
# =================================
class re_restart(func_module.FuncModule):
version = "0.0.1"
api_version = "0.0.1"
description = "Restart the frontend"
def killX (self,flags="restart frontend"):
"""
Restart X
"""
flags.replace(";","") # prevent stupidity
cmd = sub_process.Popen("/sbin/sv %s " % flags,stdout=sub_process.PIPE,shell=True)
data = cmd.communicate()[0]
results = ['Restarted UI']
return (cmd.returncode, results)
def killmyth (self,flags="-9 mythfrontend"):
"""
kill the mythfrontend process server
"""
flags.replace(";","") # prevent stupidity
cmd = sub_process.Popen("/usr/bin/killall %s" % flags,stdout=sub_process.PIPE,shell=True)
data = cmd.communicate()[0]
results = ['killed mythfrontend']
return (cmd.returncode, results)
|