Puppet Class: ssmtp::params

Defined in:
manifests/params.pp

Overview

[View source]

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

class ssmtp::params {
  case $::operatingsystem {
    'Gentoo' : {
      $package = ['mail-mta/ssmtp']
      $group = 'root'
      $owner = 'root'
      $conf = '/etc/ssmtp/ssmtp.conf'
    }
    default  : {
      fail("${::operatingsystem} not supported!")
    }
  }
}