Autofs module for Puppet
Description
Puppet module for managing Autofs mountpoints and files.
Some Contrived Example usage
autofs::mount { '/home':
device => 'ldap:ou=home,ou=autofs,dc=cat,dc=pdx,dc=edu',
options => '-rw,hard,intr,nosuid,nobrowse',
}
autofs::mount { '/cat':
device => 'ldap:ou=cat,ou=autofs,dc=cat,dc=pdx,dc=edu',
options => '-ro,hard,intr,nosuid,browse',
}
autofs::include { 'auto.web': }
autofs::mount { '/www':
device => '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': }
Resulting files
/etc/auto.master
/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
/etc/auto.web
/www ldap:ou=www,ou=autofs,dc=cat,dc=pdx,dc=edu -rw,hard,intr,nosuid,browse
/etc/auto.local
This file is not managed by puppet, and so there is no way to know what its contents will be. Puppet doesn't care.