Puppet Class: samba::server::config

Inherits:
samba
Defined in:
manifests/server/config.pp

Overview

Class: samba::server::config



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'manifests/server/config.pp', line 3

class samba::server::config inherits samba {

  concat { $config:
    owner   => 'root',
    group   => 'root',
    mode    => '0644',
  }

  concat::fragment { '01-global':
    target  => $config,
    order   => '01',
    content => template('samba/smb.conf.erb'),
  }

}