pgbouncer init.d script - Mailing list pgsql-pkg-debian

From Nicolas Payart
Subject pgbouncer init.d script
Date
Msg-id 5149CEAC.5040107@htmledit.com
Whole thread Raw
Responses Re: pgbouncer init.d script  (Christoph Berg <cb@df7cb.de>)
List pgsql-pkg-debian
I just installed pgbouncer 1.5.4-2.pgdg60+1 from apt.postgresql.org repo
on a Linux Debian Squeeze.

init.d script use start-stop-daemon with option "--status".
But start-stop-daemon version on debian squeeze is actually 1.15.8.13
and does not implement "--status" option...

So when calling restart or status command, you get an error :

15:53| nico@vm:~ # /etc/init.d/pgbouncer restart
start-stop-daemon: unrecognized option '--status'
Try 'start-stop-daemon --help' for more information.
Starting server: pgbouncer/usr/sbin/pgbouncer already running.
.
.



Waiting for a patch, I commented the following lines in
/etc/init.d/pgbouncer :

   restart)
#    $SSD --status
#    if [ $? -eq 0 ] ; then
         echo -n "Invoking $NAME restart"
         su -c "$DAEMON -R $OPTS 2> /dev/null" - $RUNASUSER
#       sleep 5
#       $SSD --status
#    else
#       $0 start
#    fi
     ;;


Regards,
Nico



pgsql-pkg-debian by date:

Previous
From: Rodrigo Rosenfeld Rosas
Date:
Subject: Re: [Pkg-postgresql-public] manpages links are lost when installing both PG 9.1 and 9.2
Next
From: Christoph Berg
Date:
Subject: Re: pgbouncer init.d script