summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/searx.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/searx.sh b/utils/searx.sh
index 7013ec750..1499b928f 100755
--- a/utils/searx.sh
+++ b/utils/searx.sh
@@ -358,6 +358,9 @@ clone_is_available() {
clone_searx() {
rst_title "Clone searx sources" section
echo
+ if ! sudo -i -u "$SERVICE_USER" ls -d "$REPO_ROOT" > /dev/null; then
+ die 42 "user '$SERVICE_USER' missed read permission: $REPO_ROOT"
+ fi
SERVICE_HOME="$(sudo -i -u "$SERVICE_USER" echo \$HOME 2>/dev/null)"
if [[ ! "${SERVICE_HOME}" ]]; then
err_msg "to clone searx sources, user $SERVICE_USER hast to be created first"