From aef2be11c5ea90bc66e774923e6570213e54c195 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sat, 23 May 2020 12:46:54 +0100 Subject: Fix or suppress various shellcheck errors under debian/ --- debian/openssh-server.ssh.runscript/finish | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'debian/openssh-server.ssh.runscript') diff --git a/debian/openssh-server.ssh.runscript/finish b/debian/openssh-server.ssh.runscript/finish index 7e29ef1db..8c67acf43 100644 --- a/debian/openssh-server.ssh.runscript/finish +++ b/debian/openssh-server.ssh.runscript/finish @@ -3,14 +3,14 @@ set -e NAME=ssh -[ $1 = -1 ] && echo "runsv: ERROR in $NAME: unexpected error or wrong sh syntax" +[ "$1" = -1 ] && echo "runsv: ERROR in $NAME: unexpected error or wrong sh syntax" # no need to stop the service here, runsv will stop trying after the first attempt -[ $1 = 161 ] && echo "runsv: ERROR $1 in $NAME: disabled by local settings" \ - && sv d $(dirname $0) && exit 0 +[ "$1" = 161 ] && echo "runsv: ERROR $1 in $NAME: disabled by local settings" \ + && sv d "$(dirname "$0")" && exit 0 -[ $1 = 162 ] && echo "runsv: ERROR $1 in $NAME: configtest or early setup failed" \ - && sv d $(dirname $0) && exit 0 +[ "$1" = 162 ] && echo "runsv: ERROR $1 in $NAME: configtest or early setup failed" \ + && sv d "$(dirname "$0")" && exit 0 echo "$NAME Stopped" -- cgit v1.2.3