Puppet Class: smb

Defined in:
manifests/init.pp

Summary

Configure SMB mounts

Overview

Parameters:

  • mounts (Hash[String, Hash]) (defaults to: {})

    sets LVs to manage



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,
    }
  }
}