summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorAntoine Beaupré <anarcat@koumbit.org>2015-07-17 13:42:10 -0400
committerAntoine Beaupré <anarcat@koumbit.org>2015-07-17 13:42:10 -0400
commit400add98326c8664db71a3138b0ec7b2948fb2e6 (patch)
tree62a15bd1ae7d66f59fc876ec96236e67904e03d5 /manifests
parentf656ae3328c1df7d8ea45ac7c0183e6f5805732c (diff)
allow appending arbitrary stuff to the resolv.conf
this is useful in Linux to add an 'options' line
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index c85b959..28e2fec 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -18,7 +18,8 @@ class resolvconf(
$nameservers = [
'77.109.138.45',
'77.109.139.29',
- ]
+ ],
+ $options,
) {
$content = $::operatingsystem ? {
openbsd => template("resolvconf/resolvconf.${::operatingsystem}.erb"),