From: Silvio Rhatto Date: Mon, 15 Aug 2011 18:19:14 +0000 (-0300) Subject: Adding dns class X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=bc443116a68704768be51129695daaaf8755fbb1;p=puppet-nodo.git Adding dns class --- diff --git a/manifests/dns.pp b/manifests/dns.pp new file mode 100644 index 0000000..bd9db5d --- /dev/null +++ b/manifests/dns.pp @@ -0,0 +1,4 @@ +class nodo::dns inherits nodo::vserver { + # Class for dns nodes + include bind +} diff --git a/manifests/init.pp b/manifests/init.pp index 129b118..74095be 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -45,6 +45,7 @@ import "ekeyd" import "lsb" import "viewvc" import "dhcp" +import "bind" # Import subsystems import "subsystems/firewire.pp" @@ -100,3 +101,4 @@ import "removable.pp" import "laptop.pp" import "plug.pp" import "appliance.pp" +import "dns.pp"