Your message dated Wed, 14 Sep 2011 06:07:18 +0200
with message-id <[email protected]>
and subject line Re: Bug#611774: broken with current inetutils-inetd init script
has caused the Debian Bug report #611774,
regarding update-inetd broken with current inetutils-inetd init script
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
611774: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=611774
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: inetutils-inetd
Version: 2:1.8-3
Severity: important

DebianNet.pm wake_inetd() routine check the /proc/<pidof /var/run/inetd.pid/stat
and compare the string to "(inetd)". It is called by update-inetd which is 
broken right
 now due to this.
A fix is to add --name $NAME in the start-stop-daemon calls of the 
inetutils-inetd init script.

Best regards
Alban


-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.35-rc5-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages inetutils-inetd depends on:
ii  libc6                         2.11.2-11  Embedded GNU C Library: Shared lib
ii  libshishi0                    1.0.0-1    Library for the Shishi Kerberos v5
ii  lsb-base                      3.2-27     Linux Standard Base 3.2 init scrip
ii  syslog-ng [system-log-daemon] 3.1.3-2    Next generation logging daemon
ii  tcpd                          7.6.q-19   Wietse Venema's TCP wrapper utilit
ii  update-inetd                  4.38+nmu1  inetd configuration file updater

inetutils-inetd recommends no packages.

inetutils-inetd suggests no packages.

-- Configuration Files:
/etc/init.d/inetutils-inetd changed:
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/inetutils-inetd
NAME=inetd
DESC="internet superserver"
PIDFILE=/var/run/$NAME.pid
test -x $DAEMON || exit 0
set -e
. /lib/lsb/init-functions
check_no_services()
{
  if ! grep -q "^[0-9A-Za-z/]" /etc/inetd.conf /etc/inetd.d/* 2>/dev/null; then
    log_warning_msg "Not starting internet superserver: no services enabled."
    exit 0
  fi
}
case "$1" in
  start)
        check_no_services
        log_daemon_msg "Starting $DESC" "$NAME"
        start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE \
                           --name $NAME --exec $DAEMON
        log_end_msg $?
        ;;
  stop)
        log_daemon_msg "Stopping $DESC" "$NAME"
        start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE \
                           --name $NAME --exec $DAEMON
        log_end_msg $?
        ;;
  reload|force-reload)
        log_action_begin_msg "Reloading $DESC configuration files"
        start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE \
                           --name $NAME --exec $DAEMON
        log_action_end_msg $?
        ;;
  restart)
        log_daemon_msg "Restarting $DESC" "$NAME"
        start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE \
                           --name $NAME --exec $DAEMON
        check_no_services
        sleep 1
        start-stop-daemon --start --quiet --pidfile $PIDFILE \
                           --name $NAME --exec $DAEMON
        log_end_msg $?
        ;;
  status)
        status_of_proc $DAEMON $NAME
        ;;
  *)
        N=/etc/init.d/inetutils-$NAME
        echo "Usage: $N {start|stop|restart|reload|force-reload|status}" >&2
        exit 1
        ;;
esac
exit 0


-- no debconf information



--- End Message ---
--- Begin Message ---
Hi!

On Wed, 2011-02-02 at 02:53:05 +0100, Alban Browaeys wrote:
> Package: inetutils-inetd
> Version: 2:1.8-3
> Severity: normal
> 
> SOrry for the wrong fix. --name does not change the process name
> so it does nto fix the update-inetd breakage. Please reassign to update-inetd
> if the only way to fix this is to modify the latter.

Right, this has been fixed now in the latest update-inetd, the relevant
changelog entry follows:

,---
update-inetd (4.40) unstable; urgency=low

  * Fix breakage with non-default inetd packages (Closes: #638180)
[...]

 -- Serafeim Zanikolas <[email protected]>  Sun, 11 Sep 2011 19:03:14 +0200
`---

Thus closing this bug report.

regards,
guillem


--- End Message ---

Reply via email to