diff options
author | Rob Crittenden <rcritten@redhat.com> | 2009-02-05 09:39:17 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-02-06 15:25:27 -0500 |
commit | 31866db9221970ae30d3296cebd2ee92099a7d13 (patch) | |
tree | 56d733e34a64c390837aaa87b4a4b41f47ea35f0 /ipaserver | |
parent | 6b34f0772026ede7788f9d2ec7989912ba17216f (diff) | |
download | freeipa-31866db9221970ae30d3296cebd2ee92099a7d13.tar.gz freeipa-31866db9221970ae30d3296cebd2ee92099a7d13.tar.xz freeipa-31866db9221970ae30d3296cebd2ee92099a7d13.zip |
Consolidate all update files into one location
Diffstat (limited to 'ipaserver')
-rw-r--r-- | ipaserver/updates/automount.update | 54 | ||||
-rw-r--r-- | ipaserver/updates/groupofhosts.update | 5 | ||||
-rw-r--r-- | ipaserver/updates/host.update | 25 |
3 files changed, 0 insertions, 84 deletions
diff --git a/ipaserver/updates/automount.update b/ipaserver/updates/automount.update deleted file mode 100644 index 13d9a6df0..000000000 --- a/ipaserver/updates/automount.update +++ /dev/null @@ -1,54 +0,0 @@ -# -# An automount schema based on RFC 2307-bis. -# -# This schema defines new automount and automountMap objectclasses to represent -# the automount maps and their entries. -# -dn: cn=schema -add:attributeTypes: - ( 1.3.6.1.1.1.1.31 NAME 'automountMapName' - DESC 'automount Map Name' - EQUALITY caseExactIA5Match - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE - X-ORIGIN 'RFC 2307bis' ) -add:attributeTypes: - ( 1.3.6.1.1.1.1.32 NAME 'automountKey' - DESC 'Automount Key value' - EQUALITY caseExactIA5Match - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE - X-ORIGIN 'RFC 2307bis' ) -add:attributeTypes: - ( 1.3.6.1.1.1.1.33 NAME 'automountInformation' - DESC 'Automount information' - EQUALITY caseExactIA5Match - SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE - X-ORIGIN 'RFC 2307bis' ) -add:objectClasses: - ( 1.3.6.1.1.1.2.16 NAME 'automountMap' - DESC 'Automount Map information' SUP top - STRUCTURAL MUST automountMapName MAY description - X-ORIGIN 'RFC 2307bis' ) -add:objectClasses: - ( 1.3.6.1.1.1.2.17 NAME 'automount' - DESC 'Automount information' SUP top STRUCTURAL - MUST ( automountKey $ automountInformation ) MAY description - X-ORIGIN 'RFC 2307bis' ) - -# Add the default automount entries - -dn: cn=automount,$SUFFIX -add:objectClass: nsContainer -add:cn: automount - -dn: automountmapname=auto.master,cn=automount,$SUFFIX -add:objectClass: automountMap -add:automountMapName: auto.master - -dn: automountkey=/-,automountmapname=auto.master,cn=automount,$SUFFIX -add:objectClass: automount -add:automountKey: '/-' -add:automountInformation: auto.direct - -dn: automountmapname=auto.direct,cn=automount,$SUFFIX -add:objectClass: automountMap -add:automountMapName: auto.direct diff --git a/ipaserver/updates/groupofhosts.update b/ipaserver/updates/groupofhosts.update deleted file mode 100644 index fb39c5e25..000000000 --- a/ipaserver/updates/groupofhosts.update +++ /dev/null @@ -1,5 +0,0 @@ -dn: cn=hostgroups,cn=accounts,$SUFFIX -add:objectClass: top -add:objectClass: nsContainer -add:cn: hostgroups - diff --git a/ipaserver/updates/host.update b/ipaserver/updates/host.update deleted file mode 100644 index f5ecda5ac..000000000 --- a/ipaserver/updates/host.update +++ /dev/null @@ -1,25 +0,0 @@ -# -# Schema for IPA Hosts -# -dn: cn=schema -add: attributeTypes: - ( 2.16.840.1.113730.3.8.3.10 NAME 'ipaClientVersion' - DESC 'Text string describing client version of the IPA software installed' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 - X-ORIGIN 'IPA v2' ) - -add: attributeTypes: - ( 2.16.840.1.113730.3.8.3.11 NAME 'enrolledBy' - DESC 'DN of administrator who performed manual enrollment of the host' - SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 - X-ORIGIN 'IPA v2' ) -add: objectClasses: - ( 2.16.840.1.113730.3.8.4.2 NAME 'ipaHost' - AUXILIARY - MAY ( userPassword $ ipaClientVersion $ enrolledBy) - X-ORIGIN 'IPA v2' ) -add: objectClasses: - ( 2.5.6.21 NAME 'pkiUser' - SUP top AUXILIARY - MAY ( userCertificate ) - X-ORIGIN 'RFC 2587' ) |