mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Update resources.py
set `w` as default permission on `install_dir` folder
This commit is contained in:
parent
0c520e828e
commit
a3df78fe7e
1 changed files with 2 additions and 2 deletions
|
@ -557,7 +557,7 @@ class InstalldirAppResource(AppResource):
|
|||
|
||||
##### Properties:
|
||||
- `dir`: (default: `/var/www/__APP__`) The full path of the install dir
|
||||
- `owner`: (default: `__APP__:rx`) The owner (and owner permissions) for the install dir
|
||||
- `owner`: (default: `__APP__:rwx`) The owner (and owner permissions) for the install dir
|
||||
- `group`: (default: `__APP__:rx`) The group (and group permissions) for the install dir
|
||||
|
||||
##### Provision/Update:
|
||||
|
@ -586,7 +586,7 @@ class InstalldirAppResource(AppResource):
|
|||
|
||||
default_properties: Dict[str, Any] = {
|
||||
"dir": "/var/www/__APP__",
|
||||
"owner": "__APP__:rx",
|
||||
"owner": "__APP__:rwx",
|
||||
"group": "__APP__:rx",
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue