From f35e95706c42f98336059c2177261a77b55427a9 Mon Sep 17 00:00:00 2001 From: Bob Ball Date: Mon, 26 Jan 2015 14:13:02 +0000 Subject: [PATCH] XenAPI: Replace remaining instances of 'devstack.succeeded' Commit I05990c7154366350b0f9cc3e6c70d6f34238486f was incomplete and left two references to the, now replaced, devstack.succeeded. The impact of this is that the XVA always claims that devstack failed to run when actually the run may have been successful Change-Id: Ie4ac673011d77a9edc8923db94d914efe9f45d5d --- tools/xen/build_xva.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/xen/build_xva.sh b/tools/xen/build_xva.sh index 7002e6e22e..25bf58cb8a 100755 --- a/tools/xen/build_xva.sh +++ b/tools/xen/build_xva.sh @@ -104,7 +104,7 @@ console output task pre-start script - rm -f /var/run/devstack.succeeded + rm -f /opt/stack/runsh.succeeded end script script @@ -127,7 +127,7 @@ script IPADDR=\$(ip -4 address show eth0 | sed -n 's/.*inet \\([0-9\.]\\+\\).*/\1/p') echo " Management IP: \$IPADDR" echo -n " Devstack run: " - if [ -e /var/run/devstack.succeeded ]; then + if [ -e /opt/stack/runsh.succeeded ]; then echo "SUCCEEDED" else echo "FAILED"