diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-05-05 13:48:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-05-05 13:48:42 -0300 |
commit | 55e5c99c15edcf9528a9ba14b184933c731dd2da (patch) | |
tree | 966048436fcab59e4441713399c6a59eda592268 /manifests | |
parent | 9fdd5fde748e7bdda5d5fdd9b9ca3a98316ed77b (diff) | |
download | puppet-nodo-55e5c99c15edcf9528a9ba14b184933c731dd2da.tar.gz puppet-nodo-55e5c99c15edcf9528a9ba14b184933c731dd2da.tar.bz2 |
Do not mess with DNS
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils.pp | 10 |
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, + } } |