Your message dated Sun, 17 Sep 2006 21:46:38 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#384668: Error in /etc/init.d/tremulous-server
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: tremulous-server
Version: 1.1.0-2
Severity: important
Hi,
This a correction of /etc/init.d/tremulous-server
It's for the package 1.1.0-2 (on Debian/Testing for me)
Bad version of function tremulous_start():
Code:
tremulous_start() {
if [ -f $PIDFILE ]; then
return 2
fi
start-stop-daemon --start --quiet --pidfile $PIDFILE --oknodo \
--background --exec $DAEMON --make-pidfile --chuid nobody \
--$DAEMON_OPTS &> /dev/null || return 1
return 0
}
Good version
Code:
tremulous_start() {
if [ -f $PIDFILE ]; then
return 2
else
start-stop-daemon --start --quiet --pidfile $PIDFILE --oknodo \
--background --exec $DAEMON --make-pidfile --chuid
nobody \
--$DAEMON_OPTS &> /dev/null || return 1
fi
return 0
}
Bye.
Salokine.
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-k7-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Versions of packages tremulous-server depends on:
ii libc6 2.3.6-15 GNU C Library: Shared libraries
ii tremulous-data 1.1.0-1 Tremulous datas
tremulous-server recommends no packages.
-- no debconf information
--- End Message ---
--- Begin Message ---
Wrong bug
--- End Message ---