fd33d13519e0f5a9f21504c42a57478b5d3d2ddf
[mirror/dsa-puppet.git] / modules / samhain / templates / logrotate.d-samhain
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 /var/log/samhain/*.log {
7         daily
8         missingok
9         rotate 14
10         dateext
11         compress
12         delaycompress
13         notifempty
14         create 640 root adm
15         sharedscripts
16         postrotate
17            if [ -f /var/run/samhain/samhain.pid ]; then \
18                 /etc/init.d/samhain reload > /dev/null; fi
19         endscript
20 }