Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: freeze-exception thanks
Hi, Please unblock couchdb/1.2.0-2 which fixes #681549 [1]. On new installs /var/run/couchdb is created to store the pidfile in, but as root:root . Then the couchdb user can't store its pid there, due to owner problems. Filed as important, but can be RC as couchdb fails to start if can't store the pidfile. The fix is oneliner: +++ couchdb-1.2.0/etc/init/couchdb.tpl.in mkdir -p "$RUN_DIR" + chown -R "$COUCHDB_USER" "$RUN_DIR" command="$COUCHDB -b" But complete debdiff is attached. Thanks, Laszlo/GCS [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681549
diff -Nru couchdb-1.2.0/debian/changelog couchdb-1.2.0/debian/changelog --- couchdb-1.2.0/debian/changelog 2012-06-29 20:31:16.000000000 +0200 +++ couchdb-1.2.0/debian/changelog 2012-07-19 20:35:03.000000000 +0200 @@ -1,3 +1,9 @@ +couchdb (1.2.0-2) unstable; urgency=low + + * Make couchdb user own its run directory (closes: #681549). + + -- Laszlo Boszormenyi (GCS) <g...@debian.hu> Thu, 19 Jul 2012 20:13:25 +0200 + couchdb (1.2.0-1) unstable; urgency=low * New major upstream release (closes: #672141). diff -Nru couchdb-1.2.0/debian/patches/couchdb_own_rundir.patch couchdb-1.2.0/debian/patches/couchdb_own_rundir.patch --- couchdb-1.2.0/debian/patches/couchdb_own_rundir.patch 1970-01-01 01:00:00.000000000 +0100 +++ couchdb-1.2.0/debian/patches/couchdb_own_rundir.patch 2012-07-19 20:57:00.000000000 +0200 @@ -0,0 +1,18 @@ +Description: Initscript creates RUN_DIR , make sure it's owned by couchdb + Add chown after the mkdir to make COUCHDB_USER own the RUN_DIR being created. +Author: Laszlo Boszormenyi (GCS) <g...@debian.hu> +Bug-Debian: http://bugs.debian.org/681549 +Last-Update: 2012-07-19 + +--- + +--- couchdb-1.2.0.orig/etc/init/couchdb.tpl.in ++++ couchdb-1.2.0/etc/init/couchdb.tpl.in +@@ -84,6 +84,7 @@ start_couchdb () { + # Start Apache CouchDB as a background process. + + mkdir -p "$RUN_DIR" ++ chown -R "$COUCHDB_USER" "$RUN_DIR" + command="$COUCHDB -b" + if test -n "$COUCHDB_STDOUT_FILE"; then + command="$command -o $COUCHDB_STDOUT_FILE" diff -Nru couchdb-1.2.0/debian/patches/series couchdb-1.2.0/debian/patches/series --- couchdb-1.2.0/debian/patches/series 2011-11-27 09:19:17.000000000 +0100 +++ couchdb-1.2.0/debian/patches/series 2012-07-19 20:46:55.000000000 +0200 @@ -1 +1,2 @@ force-reload.patch +couchdb_own_rundir.patch