From a4a330e9888837fd21e9eee7035f5159268c51f4 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sat, 1 May 2021 10:26:53 +0530 Subject: [PATCH 1/2] Updated text in fixowns --- compose/bin/fixowns | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose/bin/fixowns b/compose/bin/fixowns index 54113519b..086d49a99 100755 --- a/compose/bin/fixowns +++ b/compose/bin/fixowns @@ -1,5 +1,5 @@ #!/bin/bash -echo "Correcting filesystem ownerships..." +echo "Fixing filesystem ownerships..." if [ -z "$1" ]; then bin/rootnotty chown -R app:app /var/www/ @@ -7,4 +7,4 @@ else bin/rootnotty chown -R app:app /var/www/html/"$1" fi -echo "Filesystem ownerships corrected." +echo "Filesystem ownerships fixed." From f66c887a09754376a405bb46d44b4afc165ddf59 Mon Sep 17 00:00:00 2001 From: Adarsh Manickam Date: Sat, 1 May 2021 10:28:48 +0530 Subject: [PATCH 2/2] Updated text in fixperms --- compose/bin/fixperms | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose/bin/fixperms b/compose/bin/fixperms index c266e6fbe..fe1322fcf 100755 --- a/compose/bin/fixperms +++ b/compose/bin/fixperms @@ -1,5 +1,5 @@ #!/bin/bash -echo "Correcting filesystem permissions..." +echo "Fixing filesystem permissions..." if [ -z "$1" ]; then bin/clinotty find var vendor pub/static pub/media app/etc \( -type f -or -type d \) -exec chmod u+w {} +; @@ -8,4 +8,4 @@ else bin/clinotty find "$1" \( -type f -or -type d \) -exec chmod u+w {} +; fi -echo "Filesystem permissions corrected." +echo "Filesystem permissions fixed."