blob: a3dd70c0cc272abe46fa20a7a11581fe7728ffea (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# openvpn.pp
class openvpn {
package {
'openvpn':
ensure => installed;
}
service {
'openvpn':
ensure => running,
enable => true,
hasrestart => true,
hasstatus => true,
require => Exec['concat_/etc/default/openvpn'];
}
file {
'/etc/openvpn':
ensure => directory,
require => Package['openvpn'];
}
file {
'/etc/openvpn/keys':
ensure => directory,
require => File['/etc/openvpn'];
}
include concat::setup
concat {
'/etc/default/openvpn':
owner => root,
group => root,
mode => 644,
warn => true,
notify => Service['openvpn'];
}
concat::fragment {
'openvpn.default.header':
content => template('openvpn/etc-default-openvpn.erb'),
target => '/etc/default/openvpn',
order => 01;
}
}
|