Your message dated Sat, 20 Mar 1999 18:34:38 -0600 with message-id <[EMAIL PROTECTED]> and subject line fixed by new upload 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'm talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Ian Jackson (administrator, Debian bugs database) Received: (at submit) by bugs.debian.org; 23 Feb 1999 19:31:10 +0000 Received: (qmail 18475 invoked from network); 23 Feb 1999 19:31:08 -0000 Received: from muenster.westfalen.de (193.174.5.2) by master.debian.org with SMTP; 23 Feb 1999 19:31:08 -0000 Return-path: <[EMAIL PROTECTED]> Envelope-to: [EMAIL PROTECTED] Delivery-date: Tue, 23 Feb 1999 20:31:08 +0100 Received: from [EMAIL PROTECTED] by muenster.westfalen.de with uucp (Exim 2.05 #1) id 10FNXq-00057U-00 for [EMAIL PROTECTED]; Tue, 23 Feb 1999 20:31:02 +0100 Received: from jill.westfalen.de [10.0.0.90] (gb) by goggle.westfalen.de with smtp (Exim 1.92 #1) id 10FNHf-0004X8-00 (Debian); Tue, 23 Feb 1999 20:14:19 +0100 Received: by jill.westfalen.de (sSMTP sendmail emulation); Tue, 23 Feb 1999 20:14:21 +0100 Date: Tue, 23 Feb 1999 20:14:21 +0100 From: Georg Bauer <[EMAIL PROTECTED]> Subject: anacron hangs on startup To: [EMAIL PROTECTED] Bcc: Georg Bauer <[EMAIL PROTECTED]> X-Mailer: bug 3.1.7 Message-Id: <[EMAIL PROTECTED]> Package: anacron Version: 2.0.1-2 When starting anacron, it hangs. When starting anacron under strace, it looks like it hangs on an wait(-1,...) after a fork. -- System Information Debian Release: potato Kernel Version: Linux jill 2.2.1 #101 Fri Feb 5 16:17:12 EST 1999 ppc unknown Versions of the packages anacron depends on: ii libc6 2.0.100-2 The GNU C library version 2 (run-time files) ii sysklogd 1.3-31 Kernel and system logging daemons smail Not installed or no info sendmail Not installed or no info ii exim 2.11-2 Exim Mailer ^^^ (Provides virtual package mail-transport-agent) --- Begin /etc/init.d/anacron (modified conffile) #! /bin/sh # PATH=/bin:/usr/bin:/sbin:/usr/sbin test -f /usr/sbin/anacron || exit 0 case "$1" in start) # Run anacron only if it's later than 7:30am. if test `date +%H%M` -lt 730; then exit 0 fi echo -n "Starting anac(h)ronistic cron: anacron" anacron -s echo "." ;; restart|force-reload|stop) : ;; *) echo "Usage: /etc/init.d/anacron start" exit 1 ;; esac exit 0 --- End /etc/init.d/anacron