summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xipsilon/login/authfas.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/ipsilon/login/authfas.py b/ipsilon/login/authfas.py
index e4d54ef..30e09f5 100755
--- a/ipsilon/login/authfas.py
+++ b/ipsilon/login/authfas.py
@@ -64,7 +64,6 @@ class FAS(LoginPageBase):
context = {
"title": 'Login',
"action": '%s/login/fas' % self.basepath,
- "service_name": self.lm.service_name,
"username_text": self.lm.username_text,
"password_text": self.lm.password_text,
"description": self.lm.help_text,
@@ -86,11 +85,6 @@ class LoginManager(LoginManagerBase):
Form based login Manager that uses the Fedora Authentication Server
"""
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',
@@ -124,10 +118,6 @@ Form based login Manager that uses the Fedora Authentication Server
}
@property
- def service_name(self):
- return self.get_config_value('service name')
-
- @property
def help_text(self):
return self.get_config_value('help text')