mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
* Added ReadEtcIssue to Util
* If you have Debian running, you should get a platform line that says, 'Found Debian!' when starting up your sim. * If someone running Debian will confirm this does occur, that would be most helpful.
This commit is contained in:
@@ -439,5 +439,27 @@ namespace OpenSim.Framework
|
||||
// Truncate string before first end-of-line character found
|
||||
return input.Substring(0, clip);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// returns the contents of /etc/issue on Unix Systems
|
||||
/// Use this for where it's absolutely necessary to implement platform specific stuff
|
||||
/// ( like the ODE library :P
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static string ReadEtcIssue()
|
||||
{
|
||||
try
|
||||
{
|
||||
StreamReader sr = new StreamReader("/etc/issue.net");
|
||||
string issue = sr.ReadToEnd();
|
||||
sr.Close();
|
||||
return issue;
|
||||
}
|
||||
catch (System.Exception)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user