From ac42e81a6419b281ed3f62900e29a5a802106dce Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Mon, 3 Dec 2018 12:43:12 -0600 Subject: [PATCH] supervise-daemon.sh: drop the unused stopsig variable --- sh/supervise-daemon.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sh/supervise-daemon.sh b/sh/supervise-daemon.sh index 69d74593..e403a789 100644 --- a/sh/supervise-daemon.sh +++ b/sh/supervise-daemon.sh @@ -57,8 +57,7 @@ supervise_stop() pidfile="${startpidfile:-$pidfile}" ebegin "Stopping ${name:-$RC_SVCNAME}" supervise-daemon "${RC_SVCNAME}" --stop \ - ${pidfile:+--pidfile} $chroot$pidfile \ - ${stopsig:+--signal} $stopsig + ${pidfile:+--pidfile} $chroot$pidfile eend $? "Failed to stop ${name:-$RC_SVCNAME}" }