mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Support for setting uid/gid on *nix systems
This commit is contained in:
parent
3ed37997c5
commit
7218772b32
10 changed files with 93 additions and 17 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue