aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bind
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2010-11-24 15:22:18 +0000
committerMichael Scherer <misc@mageia.org>2010-11-24 15:22:18 +0000
commit2e9ac2e0a3b5bf7055548f5b49fe28536eb9683b (patch)
treed2bc4acefe48e1239ac89bffe38632b943075ad7 /modules/bind
parent1631e531ac77bc24a83484f6ed55f55894e252c6 (diff)
downloadpuppet-2e9ac2e0a3b5bf7055548f5b49fe28536eb9683b.tar
puppet-2e9ac2e0a3b5bf7055548f5b49fe28536eb9683b.tar.gz
puppet-2e9ac2e0a3b5bf7055548f5b49fe28536eb9683b.tar.bz2
puppet-2e9ac2e0a3b5bf7055548f5b49fe28536eb9683b.tar.xz
puppet-2e9ac2e0a3b5bf7055548f5b49fe28536eb9683b.zip
add a Requires to fix bootstraping ( ie, puppet try to do the link
before bind is installed, and show a error )
Diffstat (limited to 'modules/bind')
-rw-r--r--modules/bind/manifests/init.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/bind/manifests/init.pp b/modules/bind/manifests/init.pp
index 60ef7a04..4b668d52 100644
--- a/modules/bind/manifests/init.pp
+++ b/modules/bind/manifests/init.pp
@@ -14,7 +14,8 @@ class bind {
ensure => "/var/lib/named/etc/named.conf",
owner => root,
group => root,
- mode => 644
+ mode => 644,
+ require => Package[bind]
}
}