This is an automated email from the ASF dual-hosted git repository.
wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-pkg.git
The following commit(s) were added to refs/heads/master by this push:
new 68ab395 Fix init script exit code #28
68ab395 is described below
commit 68ab3954bdfc60640fa84a39988e23973bdb30f6
Author: Sébastien Prud'homme <[email protected]>
AuthorDate: Sun Oct 7 11:04:23 2018 +0200
Fix init script exit code #28
---
debian/couchdb.init | 2 +-
rpm/SOURCES/couchdb.init | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/debian/couchdb.init b/debian/couchdb.init
index 2091dc2..34aa47f 100644
--- a/debian/couchdb.init
+++ b/debian/couchdb.init
@@ -157,4 +157,4 @@ case "$1" in
exit 3
;;
esac
-exit 0
+exit $?
diff --git a/rpm/SOURCES/couchdb.init b/rpm/SOURCES/couchdb.init
index 5f44dc9..66c30e4 100644
--- a/rpm/SOURCES/couchdb.init
+++ b/rpm/SOURCES/couchdb.init
@@ -128,4 +128,4 @@ case "$1" in
exit 3
;;
esac
-exit 0
+exit $?