diff options
author | varac <varacanero@zeromail.org> | 2013-01-20 15:07:33 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-01-20 15:07:33 +0100 |
commit | 1d9f25303a58f15feec071d81ddf13291fdd6002 (patch) | |
tree | 6fb508dd4ad7cf89ee07ff91fe01710c8ac606cf /puppet/modules | |
parent | fc59f6c6a22a4659cefa29e18a658c852c6e89f7 (diff) |
remove bind9 service stop (#1421)
Diffstat (limited to 'puppet/modules')
-rw-r--r-- | puppet/modules/site_config/manifests/resolvconf.pp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/puppet/modules/site_config/manifests/resolvconf.pp b/puppet/modules/site_config/manifests/resolvconf.pp index 3579aaf2..a525d8c6 100644 --- a/puppet/modules/site_config/manifests/resolvconf.pp +++ b/puppet/modules/site_config/manifests/resolvconf.pp @@ -1,19 +1,12 @@ class site_config::resolvconf { - # bind9 + # bind9 purging can be taken out after some time package { 'bind9': ensure => absent, } - - service { 'bind9': - ensure => stopped, - require => Package['bind9'], - } - file { '/etc/default/bind9': ensure => absent; } - file { '/etc/bind/named.conf.options': ensure => absent; } |