Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[NOTASK]
add testbed
Jj!
committed
Oct 13, 2022
1 parent
fb08a01
commit dbca4df
Showing
48 changed files
with
22,828 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
COMPOSE_PROJECT_NAME=grouper-ext-auth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
dn: cn=eduperson,cn=schema,cn=config | ||
objectClass: olcSchemaConfig | ||
cn: eduperson | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.1 | ||
NAME 'eduPersonAffiliation' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseIgnoreMatch | ||
SUBSTR caseIgnoreSubstringsMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.7 | ||
NAME 'eduPersonEntitlement' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseExactMatch | ||
SUBSTR caseIgnoreSubstringsMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.2 | ||
NAME 'eduPersonNickName' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.3 | ||
NAME 'eduPersonOrgDN' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY distinguishedNameMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.4 | ||
NAME 'eduPersonOrgUnitDN' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY distinguishedNameMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.5 | ||
NAME 'eduPersonPrimaryAffiliation' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.8 | ||
NAME 'eduPersonPrimaryOrgUnitDN' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY distinguishedNameMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.6 | ||
NAME 'eduPersonPrincipalName' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.12 | ||
NAME 'eduPersonPrincipalNamePrior' | ||
DESC 'eduPersonPrincipalNamePrior per Internet2' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX '1.3.6.1.4.1.1466.115.121.1.15' ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.9 | ||
NAME 'eduPersonScopedAffiliation' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.10 | ||
NAME 'eduPersonTargetedID' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseExactMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.11 | ||
NAME 'eduPersonAssurance' | ||
DESC 'eduPerson per Internet2 and EDUCAUSE' | ||
EQUALITY caseExactMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.13 | ||
NAME 'eduPersonUniqueId' | ||
DESC 'eduPersonUniqueId per Internet2' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE ) | ||
olcAttributeTypes: ( 1.3.6.1.4.1.5923.1.1.1.16 | ||
NAME 'eduPersonOrcid' | ||
DESC 'ORCID researcher identifiers belonging to the principal' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
olcObjectClasses: ( 1.3.6.1.4.1.5923.1.1.2 | ||
NAME 'eduPerson' | ||
AUXILIARY | ||
MAY ( | ||
eduPersonAffiliation $ eduPersonNickname $ eduPersonOrgDN $ | ||
eduPersonOrgUnitDN $ eduPersonPrimaryAffiliation $ | ||
eduPersonPrincipalName $ eduPersonEntitlement $ eduPersonPrimaryOrgUnitDN $ | ||
eduPersonScopedAffiliation $ eduPersonTargetedID $ eduPersonAssurance $ | ||
eduPersonPrincipalNamePrior $ eduPersonUniqueId $ eduPersonOrcid ) | ||
) |
Oops, something went wrong.