From e8d7763e92c9d54bb1daaea848d20ba5d42fbda9 Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Tue, 14 Oct 2014 14:14:06 -0400 Subject: [PATCH] Don't fail when the binary is not found Per Debian Policy Manual, paragraph 9.3.2: Writing the scripts. --- other/bootstrap_daemon/tox-bootstrapd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/bootstrap_daemon/tox-bootstrapd.sh b/other/bootstrap_daemon/tox-bootstrapd.sh index a6c137bd..1431bde0 100644 --- a/other/bootstrap_daemon/tox-bootstrapd.sh +++ b/other/bootstrap_daemon/tox-bootstrapd.sh @@ -23,7 +23,7 @@ USER=tox-bootstrapd GROUP=tox-bootstrapd # Exit if the package is not installed -[ -x "$DAEMON" ] || exit 5 +[ -x "$DAEMON" ] || exit 0 # Load the VERBOSE setting and other rcS variables . /lib/init/vars.sh