mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
appsv2: data_dir's owner should have rwx by default
This commit is contained in:
parent
309c868f8c
commit
139e54a2e5
1 changed files with 2 additions and 2 deletions
|
@ -665,7 +665,7 @@ class DatadirAppResource(AppResource):
|
|||
|
||||
##### Properties:
|
||||
- `dir`: (default: `/home/yunohost.app/__APP__`) The full path of the data dir
|
||||
- `owner`: (default: `__APP__:rx`) The owner (and owner permissions) for the data dir
|
||||
- `owner`: (default: `__APP__:rwx`) The owner (and owner permissions) for the data dir
|
||||
- `group`: (default: `__APP__:rx`) The group (and group permissions) for the data dir
|
||||
|
||||
##### Provision/Update:
|
||||
|
@ -694,7 +694,7 @@ class DatadirAppResource(AppResource):
|
|||
|
||||
default_properties: Dict[str, Any] = {
|
||||
"dir": "/home/yunohost.app/__APP__",
|
||||
"owner": "__APP__:rx",
|
||||
"owner": "__APP__:rwx",
|
||||
"group": "__APP__:rx",
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue