Pearl1594 commented on a change in pull request #5831:
URL: https://github.com/apache/cloudstack/pull/5831#discussion_r828749739
##########
File path:
core/src/main/java/com/cloud/agent/resource/virtualnetwork/VirtualRoutingResource.java
##########
@@ -582,4 +584,23 @@ private Answer execute(AggregationControlCommand cmd) {
}
return new Answer(cmd, false, "Fail to recognize aggregation action "
+ action.toString());
}
+
+ public boolean isSystemVMSetup(String vmName, String controlIp) throws
InterruptedException {
+ if (vmName.startsWith("s-") || vmName.startsWith("v-")) {
+ ScriptConfigItem scriptConfigItem = new
ScriptConfigItem(VRScripts.SYSTEM_VM_PATCHED, "/opt/cloud/bin/keystore*");
+ ExecutionResult result = new ExecutionResult(false, "");
+ int retries = 0;
+ while (!result.isSuccess() && retries < 600) {
Review comment:
by parameterised do you mean a global setting @nvazquez ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]