Merge pull request #1611 from ericgaspar/patch-1

set `w` as default permission on `install_dir` folder
This commit is contained in:
Alexandre Aubin 2023-02-24 19:13:35 +01:00 committed by GitHub
commit 324366a728
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -557,7 +557,7 @@ class InstalldirAppResource(AppResource):
##### Properties: ##### Properties:
- `dir`: (default: `/var/www/__APP__`) The full path of the install dir - `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 - `group`: (default: `__APP__:rx`) The group (and group permissions) for the install dir
##### Provision/Update: ##### Provision/Update:
@ -586,7 +586,7 @@ class InstalldirAppResource(AppResource):
default_properties: Dict[str, Any] = { default_properties: Dict[str, Any] = {
"dir": "/var/www/__APP__", "dir": "/var/www/__APP__",
"owner": "__APP__:rx", "owner": "__APP__:rwx",
"group": "__APP__:rx", "group": "__APP__:rx",
} }