summaryrefslogtreecommitdiff
path: root/ext/debian/puppet.logrotate
blob: de986dc7a98156714f09cb2bb538e85c88536859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/var/log/puppet/*log {
  missingok
  sharedscripts
  create 0644 puppet puppet
  compress
  rotate 4

  postrotate
    pkill -USR2 -u puppet -f 'puppet master' || true
    [ -e /etc/init.d/puppet ] && /etc/init.d/puppet reload > /dev/null 2>&1 || true
  endscript
}