Re: [Puppet Users] default "notify" directive for files in a directory

2012-03-23 Thread Denmat
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

[Puppet Users] default "notify" directive for files in a directory

2012-03-23 Thread Matt Zagrabelny
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