]> git.proxmox.com Git - ovs.git/blob - debian/openvswitch-switch.logrotate
tests: Add check for correct l3l4 conntrack frag reassembly
[ovs.git] / debian / openvswitch-switch.logrotate
1 /var/log/openvswitch/*.log {
2 daily
3 compress
4 sharedscripts
5 create 640 root adm
6 missingok
7 rotate 30
8 postrotate
9 # Tell Open vSwitch daemons to reopen their log files
10 if [ -d /var/run/openvswitch ]; then
11 for ctl in /var/run/openvswitch/*.ctl; do
12 ovs-appctl -t "$ctl" vlog/reopen 2>/dev/null || :
13 done
14 fi
15 endscript
16 }