summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 1135b98d2b9a103001ec7baf9de82d463581c17d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class stunnel::debian inherits stunnel::linux {

  Package['stunnel'] {
    name => 'stunnel4',
  }

  Service['stunnel'] {
    name      => 'stunnel4',
    pattern   => '/usr/bin/stunnel4',
    subscribe => File['/etc/default/stunnel4'],
    require   => Package['stunnel4']
  }

  file { '/etc/default/stunnel4':
    content => template('stunnel/Debian/default'),
    before  => Package['stunnel4'],
    notify  => Service['stunnel4'],
    owner   => root,
    group   => 0,
    mode    => '0644';
  }
}