From ab966cab42aeb0a611c6c217f69c224432451fb6 Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Thu, 22 Aug 2019 15:06:44 +0000 Subject: [PATCH] Added note about an alternative way to fix permissions after this script did not handle mode 700 correctly. --- check_permissions.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/check_permissions.sh b/check_permissions.sh index ed6df01..6d65622 100755 --- a/check_permissions.sh +++ b/check_permissions.sh @@ -3,7 +3,14 @@ # Script checking the right permissions for software installations: # Ordinary files must at least have permissions 664 and directories 755. # -# Copyright (c) 2010-2016 Christoph Niethammer +# Copyright (c) 2010-2019 Christoph Niethammer +# +# +# TODO: Check replacing most of the logick by +# chmod -R g=u,o=g-w -v * +# Figure out how to do +# * a dry run +# * give statistics at the end # declare -r APP_NAME="${0##*/}"