public static boolean migrateFromResource(final Host host, final String resId, final Application.RunMode runMode) {
final Map<String, String> replaceHash = new HashMap<String, String>();
replaceHash.put("@ID@", resId);
final String command = host.getDistCommand("CRM.migrateFromResource", replaceHash);
final SshOutput ret = execCommand(host, command, runMode);
return ret.getExitCode() == 0;
}