From bcf8145e246545fd43f7a033409c818ca47e9cf3 Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Thu, 26 Oct 2017 10:56:42 -0400 Subject: [PATCH] Fix up commit 27013fa2bbeb393c471208a0fd9b93b22013f658 Change-Id: I201e9ad7f8b40d989c81998052280149e4679318 --- tests/nova-hypervisor_cleanup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/nova-hypervisor_cleanup.sh b/tests/nova-hypervisor_cleanup.sh index f646fbb..50018d7 100755 --- a/tests/nova-hypervisor_cleanup.sh +++ b/tests/nova-hypervisor_cleanup.sh @@ -9,9 +9,9 @@ snap aliases nova-hypervisor | grep neutron-ovs-cleanup || \ snap aliases nova-hypervisor | grep neutron-netns-cleanup || \ sudo snap alias nova-hypervisor.neutron-netns-cleanup neutron-netns-cleanup -if [ hash neutron-ovs-cleanup ]; then +if hash neutron-ovs-cleanup; then sudo neutron-ovs-cleanup fi -if [ hash neutron-netns-cleanup ]; then +if hash neutron-netns-cleanup; then sudo neutron-netns-cleanup fi