X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=blobdiff_plain;f=ipsilon%2Flogin%2Fauthpam.py;h=0e6a83048617132226c729b7b5862c1b20e1357b;hp=ba8ecdd9b7e15768cb72be1c5d2297be27ddf2ec;hb=HEAD;hpb=0b40c36998ed29c7e98a8cf5f42a798e0bec0870 diff --git a/ipsilon/login/authpam.py b/ipsilon/login/authpam.py index ba8ecdd..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) @@ -62,7 +47,6 @@ class Pam(LoginFormBase): error_username=not username ) self.lm.set_auth_error() - # pylint: disable=star-args return self._template('login/form.html', **context) @@ -81,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.', @@ -130,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