summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/debian.pp')
-rw-r--r--manifests/debian.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp
new file mode 100644
index 0000000..41e356e
--- /dev/null
+++ b/manifests/debian.pp
@@ -0,0 +1,13 @@
+# = Class: bind::debian
+# Special debian class - inherits from bind::base
+#
+# You should not include this class - please refer to Class["bind"]
+#
+class bind::debian inherits bind::base {
+
+ Service['bind9'] {
+ pattern => '/usr/sbin/named',
+ restart => '/etc/init.d/bind9 reload',
+ }
+
+}