if (squatterCheck != null) { // if this is null, we weren't even able to check
if (squatterCheck.booleanValue()) {
AgentInstallStep step = new AgentInstallStep("ping " + info.getAgentAddress() + ":"
+ info.getAgentPort(), "See if anything has already taken the agent port", 1,
"Port already in use", getTimeDiff(start));
info.addStep(step);
return info; // abort, don't install an agent if something is already squatting on its port
} else {
AgentInstallStep step = new AgentInstallStep("ping " + info.getAgentAddress() + ":"
+ info.getAgentPort(), "See if anything has already taken the agent port", 0, "Port free",
getTimeDiff(start));