/etc/init/neutron-linuxbridge-cleanup.conf is in neutron-linuxbridge-agent 2:8.0.0-0ubuntu1.
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 Linux bridge cleanup"
author "Corey Bryant <corey.bryant@canonical.com>"
start on started neutron-plugin-linuxbridge-agent
stop on runlevel [!2345]
pre-start script
[ ! -x /usr/bin/neutron-linuxbridge-cleanup ] && exit 0
start-stop-daemon --start --chuid neutron --exec /usr/bin/neutron-linuxbridge-cleanup -- \
--log-file /var/log/neutron/linuxbridge-cleanup.log \
--config-file /etc/neutron/neutron.conf --verbose
end script
|