X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=blobdiff_plain;f=ipsilon%2Flogin%2Fauthpam.py;h=0e6a83048617132226c729b7b5862c1b20e1357b;hp=104dd4c0d884e6961886710019ba0c5cd06fc50c;hb=HEAD;hpb=7ad204c13898245cdea5acfa90be83e767276994 diff --git a/ipsilon/login/authpam.py b/ipsilon/login/authpam.py index 104dd4c..0e6a830 100644 --- a/ipsilon/login/authpam.py +++ b/ipsilon/login/authpam.py @@ -1,19 +1,4 @@ -# Copyright (C) 2013 Simo Sorce -# -# see file 'COPYING' for use and warranty information -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Copyright (C) 2013 Ipsilon project Contributors, for license see COPYING from ipsilon.login.common import LoginFormBase, LoginManagerBase, \ LoginManagerInstaller @@ -27,9 +12,9 @@ class Pam(LoginFormBase): def _authenticate(self, username, password): if self.lm.service_name: - ok = pam.authenticate(username, password, self.lm.service_name) + ok = pam.pam().authenticate(username, password, self.lm.service_name) else: - ok = pam.authenticate(username, password) + ok = pam.pam().authenticate(username, password) if ok: self.log("User %s successfully authenticated." % username) @@ -61,7 +46,7 @@ class Pam(LoginFormBase): error_password=not password, error_username=not username ) - # pylint: disable=star-args + self.lm.set_auth_error() return self._template('login/form.html', **context) @@ -80,7 +65,9 @@ for authentication. """ pconfig.String( 'service name', 'The name of the PAM service used to authenticate.', - 'remote'), + 'remote', + readonly=True, + ), pconfig.String( 'username text', 'Text used to ask for the username at login time.', @@ -129,7 +116,7 @@ class Installer(LoginManagerInstaller): group.add_argument('--pam-service', action='store', default='remote', help='PAM service name to use for authentication') - def configure(self, opts): + def configure(self, opts, changes): if opts['pam'] != 'yes': return