blob: c7d6acc686e613f34c639e7beca1b3cdc7a43f4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class site_stunnel {
# include the generic stunnel module
# increase the number of open files to allow for 800 connections
class { 'stunnel': default_extra => 'ulimit -n 4096' }
# The stunnel.conf provided by the Debian package is broken by default
# so we get rid of it and just define our own. See #549384
if !defined(File['/etc/stunnel/stunnel.conf']) {
file {
# this file is a broken config installed by the package
'/etc/stunnel/stunnel.conf':
ensure => absent;
}
}
}
|