summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-08-28 14:44:43 -0400
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-09-24 20:29:14 +0200
commit27458696e66f79bf5523818cebdb2bd357513799 (patch)
tree6bc72ccc4ca74c753b7269ef4709d56b623970f6
parent745b0a9de5824df83887325390ca2a4e5b194264 (diff)
downloadipsilon-27458696e66f79bf5523818cebdb2bd357513799.tar.gz
ipsilon-27458696e66f79bf5523818cebdb2bd357513799.tar.xz
ipsilon-27458696e66f79bf5523818cebdb2bd357513799.zip
Remove unused option from the FAS login plugin
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
-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')