diff options
Diffstat (limited to 'OpenSim/Framework/Util.cs')
-rw-r--r-- | OpenSim/Framework/Util.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 7caa414..f72797f 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -799,6 +799,33 @@ namespace OpenSim.Framework | |||
799 | x += rx; | 799 | x += rx; |
800 | y += ry; | 800 | y += ry; |
801 | } | 801 | } |
802 | |||
803 | /// <summary> | ||
804 | /// Get operating system information if available. Returns only the first 45 characters of information | ||
805 | /// </summary> | ||
806 | /// <returns> | ||
807 | /// Operating system information. Returns an empty string if none was available. | ||
808 | /// </returns> | ||
809 | public static string GetOperatingSystemInformation() | ||
810 | { | ||
811 | string os = String.Empty; | ||
812 | |||
813 | if (System.Environment.OSVersion.Platform != PlatformID.Unix) | ||
814 | { | ||
815 | os = System.Environment.OSVersion.ToString(); | ||
816 | } | ||
817 | else | ||
818 | { | ||
819 | os = ReadEtcIssue(); | ||
820 | } | ||
821 | |||
822 | if (os.Length > 45) | ||
823 | { | ||
824 | os = os.Substring(0, 45); | ||
825 | } | ||
826 | |||
827 | return os; | ||
828 | } | ||
802 | 829 | ||
803 | /// <summary> | 830 | /// <summary> |
804 | /// Is the given string a UUID? | 831 | /// Is the given string a UUID? |