// don't want to call a config object proxy more than absolutely necessary!
String type = node.getType();
if ("SSH".equals(type)) {
NodeRunnerSsh nrs = new NodeRunnerSsh(habitat, logger);
return nrs.runAdminCommandOnRemoteNode(node, output, args, stdinLines);
}
if ("DCOM".equals(type)) {
NodeRunnerDcom nrd = new NodeRunnerDcom(logger);
return nrd.runAdminCommandOnRemoteNode(node, output, args, stdinLines);