mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04: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