From 17e3b6492ab7ea2e7df064c16e08dd326c90635e Mon Sep 17 00:00:00 2001 From: Jason Parks Date: Fri, 15 May 2020 12:28:30 -0500 Subject: [PATCH] Fix logdir permission warning --- tools/arkmanager | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/arkmanager b/tools/arkmanager index ee3869d..394343c 100755 --- a/tools/arkmanager +++ b/tools/arkmanager @@ -342,7 +342,7 @@ checkConfig() { # Service configuration # logdir if [ ! -w "$logdir" ] ; then - echo -e "[" "$RED" "ERROR" "$NORMAL" "]" "\tYou have not rights to write in the log directory." + echo -e "[" "$RED" "ERROR" "$NORMAL" "]" "\tYou do not permission to write to the log directory." fi }