]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/profile/manifests/wireguard.pp
Add wireguard profile
[perso/Immae/Projets/Puppet.git] / modules / profile / manifests / wireguard.pp
1 class profile::wireguard (
2 ) {
3 $password_seed = lookup("base_installation::puppet_pass_seed")
4
5 ensure_packages(["linux-headers"], { before => Package["wireguard-dkms"] })
6 ensure_packages(["wireguard-tools", "wireguard-dkms"])
7
8 $host = $facts["ldapvar"]["self"]
9 if has_key($host["vars"], "wireguard_ip") {
10 $ips = $host["vars"]["wireguard_ip"]
11 } else {
12 $ips = []
13 }
14
15 $private_key = generate_password(32, $password_seed, "wireguard", "curve25519", true)
16
17 file { "/etc/wireguard/network.conf":
18 ensure => "file",
19 mode => "0600",
20 content => template("profile/wireguard/network.conf.erb"),
21 require => [Package["wireguard-tools"], Package["wireguard-dkms"]],
22 }
23 ->
24 service { "wg-quick@network":
25 ensure => "running",
26 enable => true,
27 }
28
29 }