if (host.drbdVersionSmallerOrEqual("8.3")) {
command = host.getDistCommand("DRBD.skipInitSync.8.3", getResVolReplaceHash(host, resource, volume));
} else {
command = host.getDistCommand("DRBD.skipInitSync", getResVolReplaceHash(host, resource, volume));
}
final SshOutput ret = execCommand(host, command, execCallback, true, runMode);
return ret.getExitCode() == 0;
} catch (final IllegalVersionException e) {
LOG.appWarning("skipInitialFullSync: " + e.getMessage(), e);
return false;
}
}