~ubuntu-branches/ubuntu/vivid/gosa/vivid

« back to all changes in this revision

Viewing changes to gosa-core/contrib/openldap/trust.schema

Tags: 2.7.1-1
* New upstream release
* Updated packaging to not include smarty (Closes: #620489)
* Fixed case of POSIX (Closes: #620486)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# this file goes into /etc/openldap/schema or into your schema directory for your LDAP v3 server
 
2
# make sure you have it, otherwise, Directory administrator will complain when changing user accounts
 
3
# unless you don't do schema checking
 
4
 
 
5
attributetype ( 5.3.6.1.1.1.1.0 NAME 'trustModel'
 
6
        DESC 'Access scheme'
 
7
        EQUALITY caseIgnoreIA5Match
 
8
        SUBSTR caseIgnoreIA5SubstringsMatch
 
9
        SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
 
10
 
 
11
attributetype ( 5.3.6.1.1.1.1.1 NAME 'accessTo'
 
12
        DESC 'Access to which servers user is allowed'
 
13
        EQUALITY caseIgnoreIA5Match
 
14
        SUBSTR caseIgnoreIA5SubstringsMatch
 
15
        SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
 
16
 
 
17
objectclass ( 5.3.6.1.1.1.2.0 NAME 'trustAccount' SUP top AUXILIARY
 
18
        DESC 'Sets trust accounts information'
 
19
        MUST ( trustModel )
 
20
        MAY ( accessTo ) )
 
21