From 41b050e6928ee0bcce0fc4a2fa6c4c36dfcb10ff Mon Sep 17 00:00:00 2001 From: ale Date: Thu, 8 Feb 2018 07:54:02 +0000 Subject: [PATCH] Ensure startup script is executable --- build.sh | 3 +++ start.sh | 0 2 files changed, 3 insertions(+) mode change 100644 => 100755 start.sh diff --git a/build.sh b/build.sh index c7ef27f..284ea7b 100755 --- a/build.sh +++ b/build.sh @@ -106,6 +106,9 @@ for d in temp logs ; do chmod 700 /var/www/webmail/$d done +# Ensure that the startup script is executable. +chmod 755 /start.sh + # Create config mountpoint mkdir -p /etc/roundcube diff --git a/start.sh b/start.sh old mode 100644 new mode 100755 -- GitLab