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
|
class profile::wireguard (
) {
$password_seed = lookup("base_installation::puppet_pass_seed")
ensure_packages(["linux-headers"], { before => Package["wireguard-dkms"] })
ensure_packages(["wireguard-tools", "wireguard-dkms"])
$host = $facts["ldapvar"]["self"]
if has_key($host["vars"], "wireguard_ip") {
$ips = $host["vars"]["wireguard_ip"]
} else {
$ips = []
}
$private_key = generate_password(32, $password_seed, "wireguard", "curve25519", true)
file { "/etc/wireguard/network.conf":
ensure => "file",
mode => "0600",
content => template("profile/wireguard/network.conf.erb"),
require => [Package["wireguard-tools"], Package["wireguard-dkms"]],
}
->
service { "wg-quick@network":
ensure => "running",
enable => true,
}
}
|