From daca27ea4522357401e58b41fa07008f449edf78 Mon Sep 17 00:00:00 2001 From: kytv <kytv@mail.i2p> Date: Tue, 27 Dec 2011 16:02:59 +0000 Subject: [PATCH] loosen exit statuses --- debian/i2p.init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/i2p.init b/debian/i2p.init index c8c34a6a3f..d535dbc449 100755 --- a/debian/i2p.init +++ b/debian/i2p.init @@ -79,11 +79,11 @@ case "$RUN_DAEMON" in esac # We need the wrapper. If it's not found, abort. -[ -x $DAEMON ] || exit 1 +[ -x $DAEMON ] || exit 0 # Even though this script doesn't call it, check for i2prouter. If it's not # found, it probably means that the package isn't installed anymore. -[ -x /usr/bin/i2prouter ] || exit 1 +[ -x /usr/bin/i2prouter ] || exit 0 do_start() { -- GitLab