summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/func/fe_restart.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2009-02-27 16:34:01 (GMT)
committerJames Meyer <james.meyer@operamail.com>2009-02-27 16:34:01 (GMT)
commit3b28797a23d17cdf9960b0661516c262a8284354 (patch)
treec6beaccc6d57605e252623286ee49bbd95866c12 /abs/mv-core/func/fe_restart.py
parent43635706a17029756256953141d6150f9d4cb2bc (diff)
downloadlinhes_pkgbuild-3b28797a23d17cdf9960b0661516c262a8284354.zip
linhes_pkgbuild-3b28797a23d17cdf9960b0661516c262a8284354.tar.gz
linhes_pkgbuild-3b28797a23d17cdf9960b0661516c262a8284354.tar.bz2
Add new modules fe_restart.py.
Whitespace cleanup
Diffstat (limited to 'abs/mv-core/func/fe_restart.py')
-rw-r--r--abs/mv-core/func/fe_restart.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/abs/mv-core/func/fe_restart.py b/abs/mv-core/func/fe_restart.py
new file mode 100644
index 0000000..a75b0c5
--- /dev/null
+++ b/abs/mv-core/func/fe_restart.py
@@ -0,0 +1,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)
+