This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository jetty9.
commit 9830e19d60d411ba2b3a26585a5617ba02ee0b58 Author: Emmanuel Bourg <[email protected]> Date: Wed Nov 25 18:46:15 2015 +0100 Changed the default value of NO_START to 0 in /etc/default/jetty8 --- debian/README.Debian | 11 ----------- debian/changelog | 2 ++ debian/jetty8.default | 4 ++-- 3 files changed, 4 insertions(+), 13 deletions(-) diff --git a/debian/README.Debian b/debian/README.Debian index 2eed0e8..e85e91a 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -16,19 +16,8 @@ Additional contexts can be configured and (hot) deployed via the Installing: -$ sudo apt-get install libjetty8-java -$ sudo apt-get install libjetty8-extra-java $ sudo apt-get install jetty8 -Starting: - -Edit /etc/default/jetty8 -Set: -NO_START=0 - -Then do: -$ sudo service jetty8 start - Stopping: $ sudo service jetty8 stop diff --git a/debian/changelog b/debian/changelog index d61c368..208f29b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,7 @@ jetty8 (8.1.18-2) UNRELEASED; urgency=medium + * Changed the default value of NO_START to 0 in /etc/default/jetty8 + and let Jetty start automatically on installing (LP #1194755) * Fixed a build failure with maven-debian-helper 2.0 * Added the missing build dependency on asm * Replaced the dependency on libasm3-java with libasm4-java and fixed diff --git a/debian/jetty8.default b/debian/jetty8.default index 5aa6ec8..27f211d 100644 --- a/debian/jetty8.default +++ b/debian/jetty8.default @@ -1,7 +1,7 @@ # Defaults for jetty see /etc/init.d/jetty8 for more -# change to 0 to allow Jetty to start -NO_START=1 +# change to 1 to prevent Jetty from starting +NO_START=0 # change to 'no' or uncomment to use the default setting in /etc/default/rcS VERBOSE=yes -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jetty9.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

