mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
22 lines
644 B
Plaintext
22 lines
644 B
Plaintext
# Add the SSH schema
|
|
dn: cn=schema
|
|
add:attributeTypes:
|
|
( 2.16.840.1.113730.3.8.11.31 NAME 'ipaSshPubKey'
|
|
DESC 'SSH public key'
|
|
EQUALITY octetStringMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
|
|
X-ORIGIN 'IPA v3' )
|
|
add:objectClasses:
|
|
( 2.16.840.1.113730.3.8.12.11 NAME 'ipaSshGroupOfPubKeys'
|
|
ABSTRACT
|
|
MAY ipaSshPubKey
|
|
X-ORIGIN 'IPA v3' )
|
|
add:objectClasses:
|
|
( 2.16.840.1.113730.3.8.12.12 NAME 'ipaSshUser'
|
|
SUP ipaSshGroupOfPubKeys AUXILIARY
|
|
X-ORIGIN 'IPA v3' )
|
|
add:objectClasses:
|
|
( 2.16.840.1.113730.3.8.12.13 NAME 'ipaSshHost'
|
|
SUP ipaSshGroupOfPubKeys AUXILIARY
|
|
X-ORIGIN 'IPA v3' )
|