Puppet Class: vaz::config

Defined in:
manifests/config.pp

Overview

Parameters:

  • service (String) (defaults to: $vaz::service)
  • token (String) (defaults to: $vaz::token)


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

class vaz::config (
  String $service = $vaz::service,
  String $token = $vaz::token,
) {

  file { '/etc/vaz.conf':
    content => template('vaz/vaz.conf.erb'),
    owner   => 'root',
    group   => 'root',
    mode    => '0644',
  }

}