summaryrefslogtreecommitdiff
path: root/modules/networking/templates
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
commitdd28dcf3d620a4ac7d0a1532b812213cf094cd3c (patch)
treea3fa8c8ef446de2bcc2f317bceb4bca868f7e0f0 /modules/networking/templates
parentMove webdav into profiles. (diff)
downloadwebdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.gz
webdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.xz
Revert "Move webdav into profiles."
It actually reverts the non-need for the nginx module webdav_ext. Since Omnifocus requires PROPFIND. This reverts commit edf6ffe8b399679ba28cc5e558a6838919dd1ee8.
Diffstat (limited to 'modules/networking/templates')
-rw-r--r--modules/networking/templates/interface.epp16
-rw-r--r--modules/networking/templates/unit_file.epp11
2 files changed, 0 insertions, 27 deletions
diff --git a/modules/networking/templates/interface.epp b/modules/networking/templates/interface.epp
deleted file mode 100644
index d824f69..0000000
--- a/modules/networking/templates/interface.epp
+++ /dev/null
@@ -1,16 +0,0 @@
-# File managed by puppet
-auto host0
-# allow-hotplug host0
-
-iface host0 inet <%= if $addr4 { 'static' } else { 'dhcp' } %>
-<%- if $addr4 { -%>
- address <%= $addr4 %>
- <%- if $gw4 { -%>
- gateway <%= $gw4 %>
- <%- } -%>
-<%- } -%>
-
-
-iface host0 inet6 auto
- private 0
-
diff --git a/modules/networking/templates/unit_file.epp b/modules/networking/templates/unit_file.epp
deleted file mode 100644
index 00d486a..0000000
--- a/modules/networking/templates/unit_file.epp
+++ /dev/null
@@ -1,11 +0,0 @@
-<%- | Hash[String,Hash] $data
-| -%>
-<%- $data.each |$key, $sub| { -%>
-[<%= $key %>]
-<%- $sub.each |$k, $v| { -%>
-<%- if $v =~ Array { $v.each |$v| { -%>
-<%= $k %>=<%= $v %>
-<%- } } else { -%>
-<%= $k %>=<%= $v %>
-<%- } -%>
-<%- }} -%>