Puppet Class: smb
- Defined in:
- manifests/init.pp
Summary
Configure SMB mountsOverview
4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/init.pp', line 4
class smb (
Hash[String, Hash] $mounts = {},
) {
package { ['cifs-utils', 'smbclient']: }
$smb::mounts.each | String $name, Hash $options | {
smb::mount { $name:
* => $options,
}
}
}
|