aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-05-05 13:48:42 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-05-05 13:48:42 -0300
commit55e5c99c15edcf9528a9ba14b184933c731dd2da (patch)
tree966048436fcab59e4441713399c6a59eda592268
parent9fdd5fde748e7bdda5d5fdd9b9ca3a98316ed77b (diff)
downloadpuppet-nodo-55e5c99c15edcf9528a9ba14b184933c731dd2da.tar.gz
puppet-nodo-55e5c99c15edcf9528a9ba14b184933c731dd2da.tar.bz2
Do not mess with DNS
-rw-r--r--manifests/utils.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/utils.pp b/manifests/utils.pp
index af9092a..3414fd3 100644
--- a/manifests/utils.pp
+++ b/manifests/utils.pp
@@ -28,4 +28,14 @@ class nodo::utils inherits nodo::utils::base {
owner => root,
group => root,
}
+
+ # Not in use for various reasons
+ #
+ # #767071 - rdnssd drops non-nameserver settings from /etc/resolv.conf when overwriting it
+ # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767071
+ # #740998 - NetworkManager and rdnssd do not play well together
+ # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740998
+ package { [ 'rdnssd', 'dnsmasq' ]:
+ ensure => absent,
+ }
}