Puppet module for managing Autofs mountpoints and files.
autofs::mount { '/home':
map => 'ldap:ou=home,ou=autofs,dc=cat,dc=pdx,dc=edu',
options => '-rw,hard,intr,nosuid,nobrowse',
}
autofs::mount { '/cat':
map => 'ldap:ou=cat,ou=autofs,dc=cat,dc=pdx,dc=edu',
options => '-ro,hard,intr,nosuid,browse',
}
autofs::include { 'auto.web': }
autofs::mount { '/www':
map => 'ldap:ou=www,ou=autofs,dc=cat,dc=pdx,dc=edu',
options => '-rw,hard,intr,nosuid,browse',
mapfile => '/etc/auto.web',
}
autofs::include { 'auto.local': }
/cat ldap:ou=cat,ou=autofs,dc=cat,dc=pdx,dc=edu -ro,hard,intr,nosuid,browse
/home ldap:ou=home,ou=autofs,dc=cat,dc=pdx,dc=edu -rw,hard,intr,nosuid,nobrowse
+auto.local
+auto.web
/www ldap:ou=www,ou=autofs,dc=cat,dc=pdx,dc=edu -rw,hard,intr,nosuid,browse
This file is not managed by puppet, and so there is no way to know what its contents will be. Puppet doesn't care.