Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space IDS and version 8.2.0

...

The user objects then should be updated to include this new auxiliary class.

Code Block
languagetext
themeRDark
titleListing 1. Schema update from file openldap.ubilogin-account.schema
# $Id$
# Attributes
attributetype (
  1.3.6.1.4.1.14761.1.13
  NAME 'ubiloginEnabled'
  DESC 'The enabled status of this object'
  EQUALITY booleanMatch
  SINGLE-VALUE
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.7' )
attributetype (
  1.3.6.1.4.1.14761.1.19
  NAME 'ubiloginLastLogonTime'
  DESC 'Timestamp of last succesful authentication'
  EQUALITY numericStringMatch
  ORDERING numericStringOrderingMatch
  SINGLE-VALUE
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.36' )
attributetype (
  1.3.6.1.4.1.14761.1.20
  NAME 'ubiloginBadLogonTime'
  DESC 'Timestamp of last failed authentication'
  EQUALITY numericStringMatch
  ORDERING numericStringOrderingMatch
  SINGLE-VALUE
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.36' )
attributetype (
  1.3.6.1.4.1.14761.1.21
  NAME 'ubiloginBadLogonCount'
  DESC 'Number of failed authentications since last succesful authentication'
  EQUALITY integerMatch
  ORDERING integerOrderingMatch
  SINGLE-VALUE
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.27' )
attributetype (
  1.3.6.1.4.1.14761.1.22
  NAME 'ubiloginPasswordLastSet'
  DESC 'Timestamp when these credentials were last set'
  EQUALITY numericStringMatch
  ORDERING numericStringOrderingMatch
  SINGLE-VALUE
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.36' )
attributetype (
  1.3.6.1.4.1.14761.1.45
  NAME 'ubiloginNotBefore'
  DESC 'Beginning of the validity period'
  EQUALITY numericStringMatch
  ORDERING numericStringOrderingMatch
  SINGLE-VALUE
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.36' )
attributetype (
  1.3.6.1.4.1.14761.1.46
  NAME 'ubiloginNotOnOrAfter'
  DESC 'End of the validity period'
  EQUALITY numericStringMatch
  ORDERING numericStringOrderingMatch
  SINGLE-VALUE
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.36' )
attributetype (
  1.3.6.1.4.1.14761.1.55
  NAME 'ubiloginAccountControl'
  DESC 'Account control flags'
  EQUALITY caseExactMatch
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.15' )
attributetype (
  1.3.6.1.4.1.14761.1.56
  NAME 'ubiloginPasswordHistory'
  DESC 'Credentials history'
  EQUALITY caseExactMatch
  SYNTAX '1.3.6.1.4.1.1466.115.121.1.15' )
# Classes
objectclass (
  1.3.6.1.4.1.14761.2.23
  NAME 'ubiloginAccount'
  DESC 'Ubilogin Account'
  SUP top
  AUXILIARY
  MAY ( ubiloginBadLogonCount $
    ubiloginBadLogonTime $
    ubiloginLastLogonTime $
    ubiloginEnabled $
    ubiloginNotBefore $
    ubiloginNotOnOrAfter $
    ubiloginAccountControl $
    ubiloginPasswordLastSet $
    ubiloginPasswordHistory ) )

...