/etc/init/neutron-ovs-cleanup.conf is in neutron-plugin-openvswitch-agent 1:2014.1.3-0ubuntu1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # vim:set ft=upstart ts=2 et:
description "Neutron OVS cleanup"
author "James Page <james.page@ubuntu.com>"
start on started openvswitch-switch
stop on runlevel [!2345]
pre-start script
[ ! -x /usr/bin/neutron-ovs-cleanup ] && exit 0
start-stop-daemon --start --chuid neutron --exec /usr/bin/neutron-ovs-cleanup -- \
--log-file /var/log/neutron/ovs-cleanup.log \
--config-file /etc/neutron/neutron.conf --verbose
end script
|