summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/func/fe_restart.py
diff options
context:
space:
mode:
authorCecil Hugh Watson <knoppmyth@gmail.com>2009-02-27 23:47:07 (GMT)
committerCecil Hugh Watson <knoppmyth@gmail.com>2009-02-27 23:47:07 (GMT)
commitdff5cda971bd6dca1e499349903c942d2ce0c221 (patch)
tree54e8fea0ffc1fc7c82d171402dd1ffcfebcc392a /abs/mv-core/func/fe_restart.py
parent05a91fff085a94534d9096986d058a0b52af0849 (diff)
parent2702cde8aa327363a6a24caf55e3f041d6a2232e (diff)
downloadlinhes_pkgbuild-dff5cda971bd6dca1e499349903c942d2ce0c221.zip
linhes_pkgbuild-dff5cda971bd6dca1e499349903c942d2ce0c221.tar.gz
linhes_pkgbuild-dff5cda971bd6dca1e499349903c942d2ce0c221.tar.bz2
Merge branch 'HEAD' of ssh://cesman@knoppmyth.net/mount/repository/LinHES-PKGBUILD
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)
+