diff options
author | James Meyer <james.meyer@operamail.com> | 2009-06-04 13:41:18 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-06-04 13:41:18 (GMT) |
commit | 958a4c40386321b8c9008c42afd6d911d9009962 (patch) | |
tree | 56fed0c49d46e922cd400992673df7a1f215e180 /abs/core-testing/LinHES-config/webuser.py | |
parent | d9d928e1890f4c841889d2362b988466b85904cd (diff) | |
download | linhes_pkgbuild-958a4c40386321b8c9008c42afd6d911d9009962.zip linhes_pkgbuild-958a4c40386321b8c9008c42afd6d911d9009962.tar.gz linhes_pkgbuild-958a4c40386321b8c9008c42afd6d911d9009962.tar.bz2 |
LinHes-config: Removing unused files
Diffstat (limited to 'abs/core-testing/LinHES-config/webuser.py')
-rw-r--r-- | abs/core-testing/LinHES-config/webuser.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/abs/core-testing/LinHES-config/webuser.py b/abs/core-testing/LinHES-config/webuser.py deleted file mode 100644 index 1a91bf2..0000000 --- a/abs/core-testing/LinHES-config/webuser.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -import logging, mv_common -#import os - - -config_file = "mv_config" -data_config = __import__(config_file, globals(), locals(), []) - -def setup_web_auth(UseMythWEB_auth): - if UseMythWEB_auth == 1: - #enable auth - logging.info("Enabling authorization for mythweb") - cmd='''sed -ie "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 -ie "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) - |