From a3df78fe7e230c536f3f6f4b746cb7a847c338e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 24 Feb 2023 18:46:31 +0100 Subject: [PATCH] Update resources.py set `w` as default permission on `install_dir` folder --- src/utils/resources.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/resources.py b/src/utils/resources.py index c1f896841..cff6c6b19 100644 --- a/src/utils/resources.py +++ b/src/utils/resources.py @@ -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", }