I want to be able to add some requires to a file I setup:
define daemontools::service(
$ensure = 'running',
$source
){
case $ensure {
'running': { $real_ensure = $source }
'stopped': { $real_ensure = 'absent' }
default: { fail("no such ensure for daemontools::service") }
}
file{"/etc/service/${name}":
ensure => $real_ensure,
require=> Package['daemontools']
}
# This is the part that gets confusing
if $require {
File["/etc/service/${name}"]{ require +> $require }
}
}
# in some other class somewhere
daemontools::service{"tinydns":
source=>'/var/tinydns',
require => [Package['djbdns'],Exec['tinydns_setup']]
}
The LanguageTutorial seems to think this will work, but it only results in the error message: Parameter 'require' is already set on File[/etc/service/tinydns] by daemontools::service
From serverfault
gnarf
-
Get rid of the
if $require
-- it's completely unnecessary. Metaparameters like require apply to defined types just as well as they do to native types, so nothing in yourdaemontools::service
resource will run until the requires on it are successfully run.gnarf : Doh, easier than I thought...From womble
0 comments:
Post a Comment