summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 7e7fe324b86bad1ea92469dbba8609d09a1ce696 (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
# openvpn.pp

class openvpn {
    package {
        "openvpn":
            ensure => installed;
    }
    service {
        "openvpn":
            ensure     => running,
            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;
    }

}