Remove unused option from the FAS login plugin
authorSimo Sorce <simo@redhat.com>
Thu, 28 Aug 2014 18:44:43 +0000 (14:44 -0400)
committerPatrick Uiterwijk <puiterwijk@redhat.com>
Wed, 24 Sep 2014 18:29:14 +0000 (20:29 +0200)
Signed-off-by: Simo Sorce <simo@redhat.com>
Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
ipsilon/login/authfas.py

index e4d54ef..30e09f5 100755 (executable)
@@ -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',
@@ -123,10 +117,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')