You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
568 B
17 lines
568 B
# Copyright (C) 2009, 2010, 2011, 2012 Nicira, Inc. |
|
# |
|
# Copying and distribution of this file, with or without modification, |
|
# are permitted in any medium without royalty provided the copyright |
|
# notice and this notice are preserved. This file is offered as-is, |
|
# without warranty of any kind. |
|
|
|
/var/log/openvswitch/*.log { |
|
sharedscripts |
|
missingok |
|
postrotate |
|
# Tell Open vSwitch daemons to reopen their log files |
|
for pidfile in `cd /var/run/openvswitch && echo *.pid`; do |
|
ovs-appctl -t "${pidfile%%.pid}" vlog/reopen |
|
done |
|
endscript |
|
}
|
|
|