summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
blob: 14aac8ffc3150dd3ddd612bc60b839dce5cda026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
class stunnel::centos inherits stunnel::linux {

  file{'/etc/init.d/stunnel':
    source => "puppet:///modules/stunnel/${::operatingsystem}/stunnel.init",
    require => Package['stunnel'],
    before => Service['stunnel'],
    owner => root, group => 0, mode => 0755;
  }

  user::managed{ "stunnel":
    homedir => "/var/run/stunnel",
    shell => "/sbin/nologin",
    uid => 105, gid => 105;
  }

  Service['stunnel']{
    hasstatus => true,
    require => [ User['stunnel'], File['/etc/init.d/stunnel'] ]
  }

  file{'/etc/stunnel/stunnel.conf':
    source => [ "puppet:///modules/site_stunnel/${::fqdn}/stunnel.conf",
                "puppet:///modules/site_stunnel/${stunnel::cluster}/stunnel.conf",
                "puppet:///modules/site_stunnel/stunnel.conf",
                "puppet:///modules/stunnel/${::operatingsystem}/stunnel.conf" ],
    require => Package['stunnel'],
    notify => Service['stunnel'],
    owner => root, group => 0, mode => 0600;
  }
}