X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=xenserver%2Fetc_logrotate.d_openvswitch;h=52eb4f7c8ff868f4fc06f98d49d6d8cf791c597c;hb=77fd0ab5835d47d36cfa8e23c5535a5343740697;hp=f87282c32b4967db0ec2fc92d0dc2e43a6a6235c;hpb=f1e5eec7542a60140049af1d0ad15a916609fd99;p=sliver-openvswitch.git diff --git a/xenserver/etc_logrotate.d_openvswitch b/xenserver/etc_logrotate.d_openvswitch index f87282c32..52eb4f7c8 100644 --- a/xenserver/etc_logrotate.d_openvswitch +++ b/xenserver/etc_logrotate.d_openvswitch @@ -5,13 +5,17 @@ # notice and this notice are preserved. This file is offered as-is, # without warranty of any kind. -/var/log/openvswitch/* { +/var/log/openvswitch/*.log { sharedscripts missingok postrotate # Tell Open vSwitch daemons to reopen their log files - /usr/bin/ovs-appctl -t ovs-vswitchd vlog/reopen - /usr/bin/ovs-appctl -t ovsdb-server vlog/reopen + if [ -e /var/run/openvswitch/ovs-vswitchd.pid ]; then + /usr/bin/ovs-appctl -t ovs-vswitchd vlog/reopen + fi + if [ -e /var/run/openvswitch/ovsdb-server.pid ]; then + /usr/bin/ovs-appctl -t ovsdb-server vlog/reopen + fi if [ -e /var/run/openvswitch/ovs-brcompatd.pid ]; then /usr/bin/ovs-appctl -t ovs-brcompatd vlog/reopen fi