Fixed: Don't run netsh unless on Windows

This commit is contained in:
Mark McDowall 2015-01-14 18:33:15 -08:00
parent 9e11745cb2
commit c9d7e54417
1 changed files with 5 additions and 0 deletions

View File

@ -127,6 +127,11 @@ namespace NzbDrone.Host.AccessControl
private List<UrlAcl> GetRegisteredUrls()
{
if (OsInfo.IsNotWindows)
{
return new List<UrlAcl>();
}
var arguments = String.Format("http show urlacl");
var output = _netshProvider.Run(arguments);