summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xipsilon/login/authform.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/ipsilon/login/authform.py b/ipsilon/login/authform.py
index 85b31bd..4c812db 100755
--- a/ipsilon/login/authform.py
+++ b/ipsilon/login/authform.py
@@ -50,15 +50,11 @@ class LoginManager(LoginManagerBase):
self.name = 'form'
self.path = 'form'
self.page = None
+ self.service_name = 'form'
self.description = """
Form based login Manager. Relies on mod_intercept_form_submit plugin for
actual authentication. """
self._options = {
- 'service name': [
- """ The name of the PAM service used to authenticate. """,
- 'string',
- 'remote'
- ],
'help text': [
""" The text shown to guide the user at login time. """,
'string',
@@ -77,10 +73,6 @@ Form based login Manager. Relies on mod_intercept_form_submit plugin for
}
@property
- def service_name(self):
- return self.get_config_value('service name')
-
- @property
def help_text(self):
return self.get_config_value('help text')