]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Moving dnstop to utils::dns
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 21 Sep 2011 13:21:41 +0000 (10:21 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 21 Sep 2011 13:21:41 +0000 (10:21 -0300)
manifests/dns.pp
manifests/init.pp
manifests/subsystems/utils/dns.pp [new file with mode: 0644]

index 6b31df85813e94bf2306de288b51919951447822..bd9db5d13177a6829c771dece2f08a06500d228d 100644 (file)
@@ -1,8 +1,4 @@
 class nodo::dns inherits nodo::vserver {
   # Class for dns nodes
   include bind
-
-  package { 'dnstop':
-    ensure => installed,
-  }
 }
index 250e88f582a3e58b5c88132bdec7e39c716c462e..e717728b19a455294ce87b023ea359f7de192c6e 100644 (file)
@@ -78,6 +78,7 @@ import "subsystems/utils/physical.pp"
 import "subsystems/utils/storage.pp"
 import "subsystems/utils/web.pp"
 import "subsystems/utils/plug.pp"
+import "subsystems/utils/dns.pp"
 import "subsystems/firewall.pp"
 import "subsystems/firewall/printer.pp"
 import "subsystems/firewall/router.pp"
diff --git a/manifests/subsystems/utils/dns.pp b/manifests/subsystems/utils/dns.pp
new file mode 100644 (file)
index 0000000..3c7c422
--- /dev/null
@@ -0,0 +1,5 @@
+class utils::dns {
+  package { 'dnstop':
+    ensure => installed,
+  }
+}