Comment 2 for bug 6896

Revision history for this message
In , Clint Adams (clint) wrote : Re: Bug#255950: patch for the problem

> --- /var/lib/dpkg/info/libbonobo2-0.postinst 2004-06-22 17:53:53.000000000 -0400
> +++ libbonobo2-0.postinst-fixed 2004-06-23 19:30:59.000000000 -0400
> @@ -4,7 +4,7 @@
>
> case "$1" in
> configure)
> - kill -HUP `pidof bonobo-activation-server` &>/dev/null || true
> + kill -HUP `pidof bonobo-activation-server` 2>/dev/null || true
> ;;
>
> abort-upgrade|abort-remove|abort-deconfigure)

One small correction; it should be

 kill -s HUP `pidof bonobo-activation-server` 2>/dev/null || true