6620a09441743db1f20937f20a7ef7ec1ba75019
[sliver-openvswitch.git] / debian / openvswitch-switch.logrotate
1 /var/log/openvswitch/*.log {
2     daily
3     compress
4     create 640 root adm
5     delaycompress
6     missingok
7     rotate 30
8     postrotate
9     # Tell Open vSwitch daemons to reopen their log files
10     if [ -e /var/run/openvswitch/ovs-vswitchd.pid ]; then
11         ovs-appctl -t ovs-vswitchd vlog/reopen
12     fi
13     if [ -e /var/run/openvswitch/ovsdb-server.pid ]; then
14         ovs-appctl -t ovsdb-server vlog/reopen
15     fi
16     endscript
17 }