14Srgrimes# A schema for the Berkeley automounter (AMD)
2122296Speter# Authored by Erez Zadok and/or source maintainers
34Srgrimes# Definition by Tim Colles <timc at dai.ed.ac.uk>
44Srgrimes# Revised by Adam Morley <adam at gmi.com>
54Srgrimes
64Srgrimes# OID Base is 1.3.6.1.4.1.10180
74Srgrimes#
84Srgrimes# Syntaxes are under 1.3.6.1.4.1.10180.3.175-199
94Srgrimes# Attribute types are under 1.3.6.1.4.1.10180.2.175-199
104Srgrimes# Object classes are under 1.3.6.1.4.1.10180.1.175-199
114Srgrimes
124Srgrimes# Attribute Type Definitions
134Srgrimes
144Srgrimesattributetype	( 1.3.6.1.4.1.10180.2.175
154Srgrimes	NAME	'amdmapTimestamp'
164Srgrimes	DESC	'Probably the time the map was last modified'
174Srgrimes	EQUALITY	integerMatch
184Srgrimes	SYNTAX	1.3.6.1.4.1.1466.115.121.1.27
194Srgrimes	SINGLE-VALUE )
204Srgrimes
214Srgrimesattributetype	( 1.3.6.1.4.1.10180.2.176
224Srgrimes	NAME	'amdmapName'
234Srgrimes	DESC	'The symbolic name of the map, ie. map_name'
244Srgrimes	EQUALITY	caseIgnoreMatch
254Srgrimes	SYNTAX	1.3.6.1.4.1.1466.115.121.1.15
264Srgrimes	SINGLE-VALUE )
274Srgrimes
284Srgrimesattributetype	( 1.3.6.1.4.1.10180.2.177
294Srgrimes	NAME	'amdmapKey'
304Srgrimes	DESC	'The key value for this entry'
314Srgrimes	EQUALITY	caseIgnoreMatch
324Srgrimes	SYNTAX	1.3.6.1.4.1.1466.115.121.1.15
33557Srgrimes	SINGLE-VALUE )
3450477Speter
354Srgrimesattributetype	( 1.3.6.1.4.1.10180.2.178
364Srgrimes	NAME	'amdmapValue'
37122296Speter	DESC	'The mount information for this entry'
38122296Speter	EQUALITY	caseIgnoreMatch
39557Srgrimes	SYNTAX	1.3.6.1.4.1.1466.115.121.1.15
404Srgrimes	SINGLE-VALUE )
41122278Speter
424Srgrimes# Object Class Definitions
43122278Speter
44168035Sjkimobjectclass	( 1.3.6.1.4.1.10180.1.175 NAME 'amdmapTimestamp'
454Srgrimes	SUP	top STRUCTURAL
464Srgrimes	DESC	'Timestamp for an AMD map'
47114349Speter	MUST	( cn $ amdmapName $ amdmapTimestamp ) )
48114349Speter
49114349Speterobjectclass	( 1.3.6.1.4.1.10180.1.176 NAME 'amdmap'
50114349Speter	SUP	top STRUCTURAL
51114349Speter	DESC	'Defines an AMD map entry'
52114349Speter	MUST	( cn $ amdmapName $ amdmapKey $ amdmapValue ) )
53114349Speter