SunOS 5.6 == Solaris 2.6
This commit is contained in:
parent
2246f7e747
commit
b8a145e95f
|
@ -130,9 +130,14 @@ public class OperatingSystem {
|
||||||
else if (os.name.equals("SunOS")) {
|
else if (os.name.equals("SunOS")) {
|
||||||
os.type = TYPE_SOLARIS;
|
os.type = TYPE_SOLARIS;
|
||||||
os.vendor = "Sun Microsystems";
|
os.vendor = "Sun Microsystems";
|
||||||
int ix = os.version.indexOf(".");
|
if (os.version.equals("5.6")) {
|
||||||
//5.8 == solaris 8, etc.
|
os.vendorVersion = "2.6";
|
||||||
os.vendorVersion = os.version.substring(ix+1);
|
}
|
||||||
|
else {
|
||||||
|
int ix = os.version.indexOf(".");
|
||||||
|
//5.8 == solaris 8, etc.
|
||||||
|
os.vendorVersion = os.version.substring(ix+1);
|
||||||
|
}
|
||||||
os.name = NAME_SOLARIS;
|
os.name = NAME_SOLARIS;
|
||||||
}
|
}
|
||||||
else if (os.name.equals("HP-UX")) {
|
else if (os.name.equals("HP-UX")) {
|
||||||
|
|
Loading…
Reference in New Issue