Puppet Class: sogo::config

Defined in:
manifests/config.pp

Summary

Manage SOGo configuration file

Overview



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

class sogo::config {
  assert_private()

  file { $sogo::configuration_file:
    ensure  => file,
    owner   => $sogo::configuration_owner,
    group   => $sogo::configuration_group,
    mode    => $sogo::configuration_mode,
    content => epp('sogo/sogo.conf.epp'),
  }
}