Fix logic in bash inside installContrailCompute method

Existing logic leads to unconditional reboot of cmp nodes
inside installContrailCompute method.
If vhost0 interface is already present, cmp node shouldn't be rebooted.

Change-Id: I1a43c3a1d95b81f55aec345ab8f173df9482ef2a
Related-PROD: PROD-25554
diff --git a/src/com/mirantis/mk/Orchestrate.groovy b/src/com/mirantis/mk/Orchestrate.groovy
index 419c363..3fd30e6 100644
--- a/src/com/mirantis/mk/Orchestrate.groovy
+++ b/src/com/mirantis/mk/Orchestrate.groovy
@@ -578,7 +578,7 @@
     }
 
     if (salt.testTarget(master, "I@nova:compute ${extra_tgt}")) {
-        salt.cmdRun(master, "I@nova:compute ${extra_tgt}", 'exec 0>&-; exec 1>&-; exec 2>&-; nohup bash -c "ip link | grep vhost && echo no_reboot || sleep 5 && reboot & "', false)
+        salt.cmdRun(master, "I@nova:compute ${extra_tgt}", 'exec 0>&-; exec 1>&-; exec 2>&-; nohup bash -c "ip link | grep vhost && echo no_reboot || reboot & "', false)
     }
 
     sleep(300)