Hi Matt,
No, not like that.
You can group all these files under a module for that service and inside the
class for configuring those files create a default.
class blah::service {
service {'blah': .}
}
class blah::files {
File {
notify => Service['blah']
}
file {'/etc/path/file
Hi,
I know there is a way to have global options using things like:
site.pp:
File {
owner => "root",
group => "root",
mode => 0644,
}
--
Is there a way to have something like:
File[/etc/daemon/config.d/*] {
notify => Class["daemon::service"],
}
??
I would like to have the same "noti