-# Periodically cleans Neutron's network namespaces on behalf of the Quantum
+# Periodically cleans Neutron's network namespaces on behalf of the Neutron
# DHCP agent.
30 * * * * neutron if [ -x /usr/bin/neutron-netns-cleanup ] ; then \
/usr/bin/neutron-netns-cleanup \
-# Periodically cleans Quantum's network namespaces on behalf of the Quantum
-# L3 agent.
+# Periodically cleans Neutron's network namespaces on behalf of the Neutron L3 agent.
+
0 * * * * neutron if [ -x /usr/bin/neutron-netns-cleanup ] ; then \
/usr/bin/neutron-netns-cleanup \
--config-file=/etc/neutron/neutron.conf \
-# Periodically cleans Quantum's network namespaces on behalf of the Quantum LBaaS agent.
+# Periodically cleans Neutron's network namespaces on behalf of the Neutron LBaaS agent.
+
0 * * * * neutron if [ -x /usr/bin/neutron-netns-cleanup ] ; then \
/usr/bin/neutron-netns-cleanup \
--config-file=/etc/neutron/neutron.conf \
-description "Quantum l3 plugin agent"
+description "Neutron l3 plugin agent"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
-description "Quantum LBaaS agent"
+description "Neutron LBaaS agent"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
-description "Quantum server"
+description "Neutron server"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
-description "Quantum plugin NEC agent"
+description "Neutron plugin NEC agent"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
-description "Quantum openvswitch plugin agent"
+description "Neutron openvswitch plugin agent"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
if [ -r /etc/default/neutron-server ] ; then
. /etc/default/neutron-server
- if [ -n "${QUANTUM_PLUGIN_CONFIG}" ] ; then
- DAEMON_ARGS="${DAEMON_ARGS} --config-file=${QUANTUM_PLUGIN_CONFIG}"
+ if [ -n "${NEUTRON_PLUGIN_CONFIG}" ] ; then
+ DAEMON_ARGS="${DAEMON_ARGS} --config-file=${NEUTRON_PLUGIN_CONFIG}"
fi
fi
script
[ -r /etc/default/neutron-server ] && . /etc/default/neutron-server
- [ -r "$QUANTUM_PLUGIN_CONFIG" ] && CONF_ARG="--config-file $QUANTUM_PLUGIN_CONFIG"
+ [ -r "$NEUTRON_PLUGIN_CONFIG" ] && CONF_ARG="--config-file $NEUTRON_PLUGIN_CONFIG"
exec start-stop-daemon --start --chuid neutron:neutron --exec /usr/bin/neutron-server -- \
--config-file /etc/neutron/neutron.conf \
--log-file /var/log/neutron/server.log $CONF_ARG