summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-config/mv_webuser.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2009-06-01 03:31:49 (GMT)
committerJames Meyer <james.meyer@operamail.com>2009-06-01 03:31:49 (GMT)
commit0275dd9b652a2bc4cce6011c49ee5a1595bb8fd0 (patch)
treeed3f8c3cd91edd93a2af8a0a3fb72e1625314eb9 /abs/core-testing/LinHES-config/mv_webuser.py
parent45e93081254e4ff4a8da05b82e79e0645a40bcad (diff)
downloadlinhes_pkgbuild-0275dd9b652a2bc4cce6011c49ee5a1595bb8fd0.zip
linhes_pkgbuild-0275dd9b652a2bc4cce6011c49ee5a1595bb8fd0.tar.gz
linhes_pkgbuild-0275dd9b652a2bc4cce6011c49ee5a1595bb8fd0.tar.bz2
LinHES-config: adding more python modules.
Most things are not python, but network.sh is still used by install.
Diffstat (limited to 'abs/core-testing/LinHES-config/mv_webuser.py')
-rw-r--r--abs/core-testing/LinHES-config/mv_webuser.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/abs/core-testing/LinHES-config/mv_webuser.py b/abs/core-testing/LinHES-config/mv_webuser.py
new file mode 100644
index 0000000..026121f
--- /dev/null
+++ b/abs/core-testing/LinHES-config/mv_webuser.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+import logging, mv_common
+#import os
+
+def setup_web_auth(UseMythWEB_auth):
+ if UseMythWEB_auth == str(1):
+ #enable auth
+ logging.info("Enabling authorization for mythweb")
+ cmd='''sed -i "s/^.*include.*auth-inc.conf.*$/include \\"\/etc\/lighttpd\/auth-inc.conf\\"/g" /etc/lighttpd/lighttpd.conf'''
+ mv_common.runcmd(cmd)
+ else:
+ #disable auth
+ logging.info("Disabling authorization for mythweb")
+ cmd='''sed -i "s/^.*include.*auth-inc.conf.*$/#include \\"\/etc\/lighttpd\/auth-inc.conf\\"/g" /etc/lighttpd/lighttpd.conf'''
+ mv_common.runcmd(cmd)
+ logging.debug("Restarting lighttpd")
+ cmd="sudo sv restart lighttpd"
+ mv_common.runcmd(cmd)
+