From efd3ce8a1c34a44e2835cbb9343e79d76ab30a63 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Wed, 12 Jun 2019 21:24:44 +0200 Subject: [PATCH] Explicitly specify shell in runuser command Signed-off-by: DL6ER --- test/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run.sh b/test/run.sh index 85c1b1dd..30f0c1ad 100755 --- a/test/run.sh +++ b/test/run.sh @@ -35,7 +35,7 @@ echo "BLOCKING_ENABLED=true" > /etc/pihole/setupVars.conf echo "" > /etc/pihole/pihole-FTL.conf # Start FTL -if ! runuser -l pihole -c /home/pihole/pihole-FTL; then +if ! runuser -l pihole -s /bin/sh -c /home/pihole/pihole-FTL; then echo "pihole-FTL failed to start" exit 1 fi