aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/samba.pp
blob: e5a3ff5b5399e8ce3567b8e480e373a8b4c2fc36 (plain)
1
2
3
4
5
6
7
8
9
10
11
class nodo::utils::network::samba (
  $ensure = 'installed',
) {
  package { [
    'smbclient',
    'cifs-utils',
    'nbtscan',
  ]:
    ensure => $ensure,
  }
}