summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/.git_placeholder1
-rw-r--r--manifests/init.pp12
2 files changed, 5 insertions, 8 deletions
diff --git a/files/.git_placeholder b/files/.git_placeholder
new file mode 100644
index 0000000..89cb1fe
--- /dev/null
+++ b/files/.git_placeholder
@@ -0,0 +1 @@
+# file needed for git - don't remove it
diff --git a/manifests/init.pp b/manifests/init.pp
index fb57059..0f952cc 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,20 +1,21 @@
# modules/resolvconf/manifests/init.pp - manage resolvconf stuff
# Copyright (C) 2007 admin@immerda.ch
# GPLv3
+# adapted by Puzzle ITC - haerry+puppet(at)puzzle.ch
# modules_dir { "resolvconf": }
class resolvconf {
$real_resolvconf_domain = $resolvconf_domain ? {
- '' => 'glei.ch',
+ '' => 'rz.puzzle.ch',
default => $resolvconf_domain,
}
$real_resolvconf_search = $resolvconf_search ? {
- '' => 'glei.ch',
+ '' => 'rz.puzzle.ch.ch',
default => $resolvconf_search,
}
$real_resolvconf_nameservers = $resolvconf_nameservers ? {
- '' => '212.103.67.60:212.103.67.61',
+ '' => '195.141.101.81:195.141.101.82',
default => $resolvconf_nameservers,
}
@@ -25,9 +26,4 @@ class resolvconf {
mode => 444,
content => template("resolvconf/resolvconf.erb")
}
-
-
}
-
-
-