]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fixed the cron.d files for lbass, dhcp and l3, so that they are on a single line...
authorThomas Goirand <thomas@goirand.fr>
Mon, 2 Dec 2013 14:54:00 +0000 (22:54 +0800)
committerThomas Goirand <thomas@goirand.fr>
Mon, 2 Dec 2013 14:54:00 +0000 (22:54 +0800)
Change-Id: Id95a56ffadcc8fe01c517d39bb0716d320ccdc19

debian/changelog
debian/cron.d/neutron-dhcp-agent-netns-cleanup
debian/cron.d/neutron-l3-agent-netns-cleanup
debian/cron.d/neutron-lbaas-agent-netns-cleanup

index 142a62dd7d5450235901c3ae8a022f229b1cebe8..e151f6c24a5d77a1b2b3bdc6e92ad82b880d7b59 100644 (file)
@@ -1,6 +1,8 @@
 neutron (2013.2-7) UNRELEASED; urgency=low
 
   * neutron-l3-agent & neutron-vpn-agent now conflicts with each other.
+  * Fixed the cron.d files for lbass, dhcp and l3, so that they are on a single
+    line instead of broken lines with \ (this doesn't work otherwise).
 
  -- Thomas Goirand <zigo@debian.org>  Mon, 02 Dec 2013 22:39:46 +0800
 
index 54fdb92683afc58eea0f62cff8df164fc2717d47..69654c2bb97ea31ded3a3c471091312ffa8837fa 100644 (file)
@@ -1,6 +1,3 @@
 # 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 \
-                    --config-file=/etc/neutron/neutron.conf \
-                    --config-file=/etc/neutron/dhcp_agent.ini >/dev/null 2>&1; fi
+30 * * * * neutron if [ -x /usr/bin/neutron-netns-cleanup ] ; then /usr/bin/neutron-netns-cleanup --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/dhcp_agent.ini >/dev/null 2>&1; fi
index 997a76d0f84302217653bbff04f540450e2b60c0..e59205e693cd0c9ffe75e279c4498bd169a56a58 100644 (file)
@@ -1,6 +1,3 @@
 # 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 \
-                    --config-file=/etc/neutron/l3_agent.ini >/dev/null 2>&1; fi
+0 * * * * neutron if [ -x /usr/bin/neutron-netns-cleanup ] ; then /usr/bin/neutron-netns-cleanup --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/l3_agent.ini >/dev/null 2>&1; fi
index fa4c455eb9332991f31a295109f17207b9277216..f7595b75b26804c9714fb1a7d0e7029fc5d02635 100644 (file)
@@ -1,6 +1,3 @@
 # 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  \
-                    --config-file=/etc/neutron/lbaas_agent.ini >/dev/null 2>&1; fi
+0 * * * * neutron if [ -x /usr/bin/neutron-netns-cleanup ] ; then /usr/bin/neutron-netns-cleanup --config-file=/etc/neutron/neutron.conf --config-file=/etc/neutron/lbaas_agent.ini >/dev/null 2>&1; fi