~ubuntu-branches/ubuntu/natty/nova/natty

« back to all changes in this revision

Viewing changes to nova/auth/nova_openldap.schema

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short, Chuck Short, Soren Hansen, Thierry Carrez
  • Date: 2011-02-18 09:36:22 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110218093622-w13dzywbd7vq2qh7
Tags: 2011.2~bzr700-0ubuntu1
[ Chuck Short ]
* New upstream version.

[ Soren Hansen ]
* Rely on --logdir to find and use the correct logfile.
* Remove the postrotate magic for all but nova-objectstore. It is not
  needed anymore due to using RotatingFileHandler for logging.

[ Thierry Carrez ]
* Ship adminclient in a separate package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Person object for Nova
 
3
# inetorgperson with extra attributes
 
4
# Schema version: 2
 
5
# Authors: Vishvananda Ishaya <vishvananda@gmail.com>
 
6
#          Ryan Lane <rlane@wikimedia.org>
 
7
#
 
8
#
 
9
 
 
10
# using internet experimental oid arc as per BP64 3.1
 
11
objectidentifier novaSchema 1.3.6.1.3.1.666.666
 
12
objectidentifier novaAttrs novaSchema:3
 
13
objectidentifier novaOCs novaSchema:4
 
14
 
 
15
attributetype (
 
16
    novaAttrs:1
 
17
    NAME 'accessKey'
 
18
    DESC 'Key for accessing data'
 
19
    EQUALITY caseIgnoreMatch
 
20
    SUBSTR caseIgnoreSubstringsMatch
 
21
    SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
 
22
    SINGLE-VALUE
 
23
    )
 
24
 
 
25
attributetype (
 
26
    novaAttrs:2
 
27
    NAME 'secretKey'
 
28
    DESC 'Secret key'
 
29
    EQUALITY caseIgnoreMatch
 
30
    SUBSTR caseIgnoreSubstringsMatch
 
31
    SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
 
32
    SINGLE-VALUE
 
33
    )
 
34
 
 
35
attributetype (
 
36
    novaAttrs:4
 
37
    NAME 'isNovaAdmin'
 
38
    DESC 'Is user an nova administrator?'
 
39
    EQUALITY booleanMatch
 
40
    SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
 
41
    SINGLE-VALUE
 
42
    )
 
43
 
 
44
objectClass (
 
45
    novaOCs:1
 
46
    NAME 'novaUser'
 
47
    DESC 'access and secret keys'
 
48
    AUXILIARY
 
49
    MAY  ( accessKey $ secretKey $ isNovaAdmin )
 
50
    )