summaryrefslogtreecommitdiffstats
path: root/modules/wireguard
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-08 23:27:06 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-08 23:27:06 -0400
commit098f41b426aa71e34c512ffc599cac5c945772be (patch)
treecbe0c874637dd339f39f1907de3f647c6dacef5e /modules/wireguard
parentcde7cfdf4073dce360efcc6103bb7dc257e455f2 (diff)
downloadpuppet-tozt-098f41b426aa71e34c512ffc599cac5c945772be.tar.gz
puppet-tozt-098f41b426aa71e34c512ffc599cac5c945772be.zip
install wireguard
don't bring it up, because it needs the config, which we can't include here because it contains private keys
Diffstat (limited to 'modules/wireguard')
-rw-r--r--modules/wireguard/manifests/init.pp5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/wireguard/manifests/init.pp b/modules/wireguard/manifests/init.pp
new file mode 100644
index 0000000..fed1b7f
--- /dev/null
+++ b/modules/wireguard/manifests/init.pp
@@ -0,0 +1,5 @@
+class wireguard {
+ package { ["linux-headers", "wireguard-tools"]:
+ ensure => installed,
+ }
+}