summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/func/fe_restart.py
diff options
context:
space:
mode:
Diffstat (limited to 'abs/mv-core/func/fe_restart.py')
-rw-r--r--abs/mv-core/func/fe_restart.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/abs/mv-core/func/fe_restart.py b/abs/mv-core/func/fe_restart.py
deleted file mode 100644
index a75b0c5..0000000
--- a/abs/mv-core/func/fe_restart.py
+++ /dev/null
@@ -1,35 +0,0 @@
-##
-# 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)
-