~ubuntu-branches/ubuntu/trusty/freeipa/trusty

« back to all changes in this revision

Viewing changes to ipapython/platform/debian/auth.py

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2013-03-07 14:10:03 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130307141003-kz4lq9vj4x692mqq
Tags: 3.1.2-0ubuntu1
* Merge from unreleased debian git.
  - new upstream release
  - doesn't use chkconfig anymore (LP: #1025018, #1124093)
  - drop -U from the ntpdate options (LP: #1149468)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from ipapython.platform import base
 
2
 
 
3
class DebianAuthConfig(base.AuthConfig):
 
4
    """
 
5
    Debian implementation of the AuthConfig class.
 
6
 
 
7
    Debian doesn't provide a single application for changing both
 
8
    nss and pam configuration. PAM can be configured using debconf but there
 
9
    is currently no such solution for updating NSS database and every package
 
10
    does it by itself.
 
11
 
 
12
    We'll have to play a catch-up game with the rest of the FreeIPA project
 
13
    filtering out .enable() and .disable() calls that are useless for us,
 
14
    and making the best out of the rest of them.
 
15
    """
 
16
 
 
17
    def execute(self):
 
18
        raise NotImplementedError