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
| ... | ... |
@@ -104,7 +104,7 @@ console output |
| 104 | 104 |
task |
| 105 | 105 |
|
| 106 | 106 |
pre-start script |
| 107 |
- rm -f /var/run/devstack.succeeded |
|
| 107 |
+ rm -f /opt/stack/runsh.succeeded |
|
| 108 | 108 |
end script |
| 109 | 109 |
|
| 110 | 110 |
script |
| ... | ... |
@@ -127,7 +127,7 @@ script |
| 127 | 127 |
IPADDR=\$(ip -4 address show eth0 | sed -n 's/.*inet \\([0-9\.]\\+\\).*/\1/p') |
| 128 | 128 |
echo " Management IP: \$IPADDR" |
| 129 | 129 |
echo -n " Devstack run: " |
| 130 |
- if [ -e /var/run/devstack.succeeded ]; then |
|
| 130 |
+ if [ -e /opt/stack/runsh.succeeded ]; then |
|
| 131 | 131 |
echo "SUCCEEDED" |
| 132 | 132 |
else |
| 133 | 133 |
echo "FAILED" |