summaryrefslogtreecommitdiff
path: root/manifests/wireguard.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/wireguard.pp')
-rw-r--r--manifests/wireguard.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/wireguard.pp b/manifests/wireguard.pp
new file mode 100644
index 0000000..3baa5ec
--- /dev/null
+++ b/manifests/wireguard.pp
@@ -0,0 +1,16 @@
+# qrencode -t ansiutf8 < tunnel.conf
+class profiles::wireguard (
+ $port = 51871,
+) {
+ ensure_packages ([
+ 'wireguard-tools', # userspace utilities
+ ])
+
+ # TODO Where are these currently set in puppet?
+ # sysctl -w net.ipv4.ip_forward=1
+ # sysctl -w net.ipv6.conf.all.forwarding=1
+
+
+
+
+}