Puppet Class: autofs::mounts
- Defined in:
- manifests/mounts.pp
Overview
Class: autofs::mounts
Class used specifically to pass hiera autolookups as a hiera_hash to the autofs::mount defined type.
24 25 26 27 28 |
# File 'manifests/mounts.pp', line 24
class autofs::mounts() {
$mount = hiera_hash('autofs::mounts', [])
create_resources('autofs::mount', $mount)
}
|