Merge branch 'master' of bitbucket.org:tmakinen/puppet

This commit is contained in:
Ossi Salmi 2013-07-15 20:55:59 +03:00
commit 9b243b66d7
2 changed files with 17 additions and 4 deletions

View file

@ -342,6 +342,9 @@ class syslog::standalone::syslogd inherits syslog::client::syslogd {
require => [ File["/srv/log"],
File["/var/log/all.log"], ],
}
Service["syslogd"] {
subscribe => File["/srv/log"],
}
}
@ -357,6 +360,9 @@ class syslog::standalone::rsyslog inherits syslog::client::rsyslog {
require => [ File["/srv/log"],
File["/var/log/all.log"], ],
}
Service["rsyslog"] {
subscribe => File["/srv/log"],
}
}