diff options
author | James Meyer <james.meyer@operamail.com> | 2008-11-09 02:33:06 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-11-09 02:33:06 (GMT) |
commit | 1ba69cc033dfbd0a6c4c29c6d877c7e753f96e8e (patch) | |
tree | f336ee91ce16c6591fff50340562e07e15aa1a55 /abs/mv-core/local-website/cgi | |
parent | 75b1bceb21faab32d8f519d6f7f7062a226f9047 (diff) | |
download | linhes_pkgbuild-1ba69cc033dfbd0a6c4c29c6d877c7e753f96e8e.zip linhes_pkgbuild-1ba69cc033dfbd0a6c4c29c6d877c7e753f96e8e.tar.gz linhes_pkgbuild-1ba69cc033dfbd0a6c4c29c6d877c7e753f96e8e.tar.bz2 |
MythVantage specific pkgs
Diffstat (limited to 'abs/mv-core/local-website/cgi')
-rwxr-xr-x | abs/mv-core/local-website/cgi/beclear.cgi | 4 | ||||
-rwxr-xr-x | abs/mv-core/local-website/cgi/bestop.cgi | 6 | ||||
-rwxr-xr-x | abs/mv-core/local-website/cgi/diskless.py | 11 | ||||
-rwxr-xr-x | abs/mv-core/local-website/cgi/serverkey.cgi | 3 |
4 files changed, 24 insertions, 0 deletions
diff --git a/abs/mv-core/local-website/cgi/beclear.cgi b/abs/mv-core/local-website/cgi/beclear.cgi new file mode 100755 index 0000000..40c0cec --- /dev/null +++ b/abs/mv-core/local-website/cgi/beclear.cgi @@ -0,0 +1,4 @@ +#!/bin/bash +/usr/local/bin/mythbackend --clearcache +MESSAGE="settings cache is cleared " +#/usr/bin/notify.py SYS "$MESSAGE" 2>/dev/null diff --git a/abs/mv-core/local-website/cgi/bestop.cgi b/abs/mv-core/local-website/cgi/bestop.cgi new file mode 100755 index 0000000..e45e74d --- /dev/null +++ b/abs/mv-core/local-website/cgi/bestop.cgi @@ -0,0 +1,6 @@ +#!/bin/bash +sudo /sbin/sv stop mythbackend > /dev/null +MESSAGE="`hostname` B.E. stopped" + +#echo $MESSAGE +/usr/bin/notify.py NFO "$MESSAGE" 2>/dev/null diff --git a/abs/mv-core/local-website/cgi/diskless.py b/abs/mv-core/local-website/cgi/diskless.py new file mode 100755 index 0000000..d8d960b --- /dev/null +++ b/abs/mv-core/local-website/cgi/diskless.py @@ -0,0 +1,11 @@ +#!/usr/bin/python +import cgi +import os +#http://192.168.1.200:1337/diskless.py?HOSTNAME=Envynetfe&MAC=00:0C:29:2D:08:82 + +The_Form = cgi.FieldStorage() +print "name:" + The_Form["HOSTNAME"].value +print "mac:" + The_Form["MAC"].value +cmd="sudo /usr/MythVantage/bin/build_diskless.sh " + The_Form["HOSTNAME"].value + " " + The_Form["MAC"].value +print cmd +os.popen(cmd + " >/dev/null 2>&1 &" ) diff --git a/abs/mv-core/local-website/cgi/serverkey.cgi b/abs/mv-core/local-website/cgi/serverkey.cgi new file mode 100755 index 0000000..ee54480 --- /dev/null +++ b/abs/mv-core/local-website/cgi/serverkey.cgi @@ -0,0 +1,3 @@ +#!/bin/bash +#cat /data/srv/httpd/dsa.pub +cat /data/srv/.nobody_ssh/id_dsa.pub |