lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

020-autofs-schema.patch (859B)


      1 --- /dev/null
      2 +++ b/servers/slapd/schema/autofs.schema
      3 @@ -0,0 +1,23 @@
      4 +attributetype ( 1.3.6.1.1.1.1.31 NAME 'automountMapName'
      5 +	DESC 'Automount map name'
      6 +	EQUALITY caseExactMatch
      7 +	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )
      8 +
      9 +attributetype ( 1.3.6.1.1.1.1.32 NAME 'automountKey'
     10 +	DESC 'Automount key value'
     11 +	EQUALITY caseExactMatch
     12 +	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )
     13 +
     14 +attributetype ( 1.3.6.1.1.1.1.33 NAME 'automountInformation'
     15 +	DESC 'Automount information'
     16 +	EQUALITY caseExactMatch
     17 +	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )
     18 +
     19 +objectclass ( 1.3.6.1.1.1.2.16 NAME 'automountMap' SUP top STRUCTURAL
     20 +	MUST ( automountMapName )
     21 +	MAY ( description ) )
     22 +
     23 +objectclass ( 1.3.6.1.1.1.2.17 NAME 'automount' SUP top STRUCTURAL
     24 +	DESC 'Automount'
     25 +	MUST ( automountKey $ automountInformation )
     26 +	MAY description )