New: Removed chown and simplified chmod options for linux/osx

This commit is contained in:
Arthur Bols 2020-06-07 19:05:25 +02:00 committed by Qstick
parent b0c7530981
commit e5f48959eb
17 changed files with 216 additions and 140 deletions

View file

@ -262,27 +262,6 @@ namespace NzbDrone.Core.Configuration
set { SetValue("FileChmod", value); }
}
public string FolderChmod
{
get { return GetValue("FolderChmod", "0755"); }
set { SetValue("FolderChmod", value); }
}
public string ChownUser
{
get { return GetValue("ChownUser", ""); }
set { SetValue("ChownUser", value); }
}
public string ChownGroup
{
get { return GetValue("ChownGroup", ""); }
set { SetValue("ChownGroup", value); }
}
public string MetadataSource
{
get { return GetValue("MetadataSource", ""); }