~ubuntu-branches/debian/squeeze/tomcat6/squeeze

« back to all changes in this revision

Viewing changes to debian/tomcat6.init

  • Committer: Bazaar Package Importer
  • Author(s): tony mancill, Thierry Carrez (ttx), tony mancill
  • Date: 2010-12-04 17:20:11 UTC
  • Revision ID: james.westby@ubuntu.com-20101204172011-d6f3bjt7bgj0odn1
Tags: 6.0.28-8
* Team upload.

[ Thierry Carrez (ttx) ]
* Do not fail to purge if /etc/tomcat6 was manually removed (LP: #648619)
* Add missing -p option in start-stop-daemon when starting tomcat6 to avoid
  failing to start due to /bin/bash running (LP: #632554)
* Fix build failure (missing TraXLiaison class) by adding ant-nodeps
  to the classpath.

[ tony mancill ]
* Use debconf to determine tomcat6 user and group to delete upon purge.
  Thanks to Misha Koshelev.  (Closes: #599458)
* Add tomcat-native to Suggests: for tomcat6 binary package. 
  Thanks to Eddy Petrisor  (Closes: #600590)
* Add Danish debconf template translation.
  Thanks to Joe Dalton (Closes: #605070)
* Actually add the Czech debconf template translation. 
  Thanks this time to Christian PERRIER (Closes: #597863)

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
        touch "$CATALINA_PID" "$CATALINA_BASE"/logs/catalina.out
151
151
        chown $TOMCAT6_USER "$CATALINA_PID" "$CATALINA_BASE"/logs/catalina.out
152
152
        start-stop-daemon --start -b -u "$TOMCAT6_USER" -g "$TOMCAT6_GROUP" \
153
 
                -c "$TOMCAT6_USER" -d "$CATALINA_TMPDIR" \
 
153
                -c "$TOMCAT6_USER" -d "$CATALINA_TMPDIR" -p "$CATALINA_PID" \
154
154
                -x /bin/bash -- -c "$AUTHBIND_COMMAND $TOMCAT_SH"
155
155
        status="$?"
156
156
        set +a -e