use of com.iwave.ext.linux.model.LinuxVersion in project coprhd-controller by CoprHD.
the class GetRedhatVersionCommandTwo method parseOutput.
@Override
public void parseOutput() {
String stdOut = getOutput().getStdout();
results = new LinuxVersion(LinuxVersion.LinuxDistribution.REDHAT, stdOut);
}
use of com.iwave.ext.linux.model.LinuxVersion in project coprhd-controller by CoprHD.
the class GetSuSEVersionCommand method parseOutput.
@Override
public void parseOutput() {
String stdOut = getOutput().getStdout();
results = new LinuxVersion(LinuxVersion.LinuxDistribution.SUSE, stdOut);
}
Aggregations