From 6ee578fd8669a13bb560abb2c8723dd9da2cb01f Mon Sep 17 00:00:00 2001 From: ggwadera <16023489+ggwadera@users.noreply.github.com> Date: Fri, 4 Sep 2020 10:51:02 -0300 Subject: [PATCH] setup: add permissions comment --- scripts/setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/setup.sh b/scripts/setup.sh index 1a313c6b..446415a7 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -78,6 +78,9 @@ cp ./scripts/gitignore /home/myproxy/.scripts/.gitignore # fix file permissions chown myproxy:myproxy -R /home/myproxy/ chown git:git -R /home/git/ +# set the group permissions for /home/myproxy +# 2 = set the setgid bit for the files so group permissions are inherited +# 775 = set read+write permissions for the user and group chmod 2775 -R /home/myproxy/ npm run build