mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Support for setting uid/gid on *nix systems
This commit is contained in:
@@ -305,6 +305,20 @@ namespace NzbDrone.Core.Configuration
|
||||
set { SetValue("FolderChmod", value); }
|
||||
}
|
||||
|
||||
public String ChownUser
|
||||
{
|
||||
get { return GetValue("User", ""); }
|
||||
|
||||
set { SetValue("User", value); }
|
||||
}
|
||||
|
||||
public String ChownGroup
|
||||
{
|
||||
get { return GetValue("User", ""); }
|
||||
|
||||
set { SetValue("User", value); }
|
||||
}
|
||||
|
||||
private string GetValue(string key)
|
||||
{
|
||||
return GetValue(key, String.Empty);
|
||||
|
Reference in New Issue
Block a user