Your message dated Wed, 17 Aug 2005 13:17:05 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#18733: fixed in cron 3.0pl1-88 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) -------------------------------------- Received: (at submit) by bugs.debian.org; 1 Mar 1998 13:55:41 +0000 Received: (qmail 4184 invoked from network); 1 Mar 1998 13:55:37 -0000 Received: from azure.humbug.org.au ([EMAIL PROTECTED]) by debian.novare.net with SMTP; 1 Mar 1998 13:55:37 -0000 Received: (qmail 14682 invoked by uid 1000); 1 Mar 1998 13:55:23 -0000 Date: 1 Mar 1998 13:55:23 -0000 Message-ID: <[EMAIL PROTECTED]> From: <[email protected]> Subject: cron: crontab -e should include file format comment To: [EMAIL PROTECTED] X-Mailer: bug 3.1.0 Package: cron Version: 3.0pl1-42 Severity: wishlist Using `crontab -e' when no pre-existing crontab exists for a user requires you to switch to a different term and look up the format. It would be nice if a "# m h dom mon dow command" header were included in new user crontabs as per /etc/crontab. ----------cut---------- --- crontab.c.orig Sun Mar 1 22:51:56 1998 +++ crontab.c Sun Mar 1 23:48:15 1998 @@ -332,6 +332,8 @@ PID_T pid, xpid; mode_t um; + int add_help_text = 0; + log_it(RealUser, Pid, "BEGIN EDIT", User); (void) sprintf(n, CRON_TAB(User)); if (!(f = fopen(n, "r"))) { @@ -345,6 +347,7 @@ perror("/dev/null"); exit(ERROR_EXIT); } + add_help_text = 1; } um = umask(077); @@ -376,6 +379,10 @@ } Set_LineNum(1) + + if ( add_help_text ) { + fprintf( NewCrontab, "# m h dom mon dow command\n" ); + } /* ignore the top few comments since we probably put them there. */ ----------cut---------- Cheers, aj -- System Information Debian Release: 2.0 (unstable) Kernel Version: Linux azure 2.0.33 #1 Sat Jan 24 15:31:22 EST 1998 i586 unknown Versions of the packages cron depends on: libc6 Version: 2.0.7pre1-2 bsdutils Version: 4.1 --- Begin /etc/crontab (modified conffile) SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin 42 6 * * * root run-parts /etc/cron.daily 47 6 * * 7 root run-parts /etc/cron.weekly 52 6 1 * * root run-parts /etc/cron.monthly 30 7 * * * root /usr/sbin/cronanacron 20,40 * * * * root faxrunq --- End /etc/crontab --------------------------------------- Received: (at 18733-close) by bugs.debian.org; 17 Aug 2005 20:28:31 +0000 >From [EMAIL PROTECTED] Wed Aug 17 13:28:31 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1E5ULR-0005cc-00; Wed, 17 Aug 2005 13:17:05 -0700 From: Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#18733: fixed in cron 3.0pl1-88 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Wed, 17 Aug 2005 13:17:05 -0700 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 Source: cron Source-Version: 3.0pl1-88 We believe that the bug you reported is fixed in the latest version of cron, which is due to be installed in the Debian FTP archive: cron_3.0pl1-88.diff.gz to pool/main/c/cron/cron_3.0pl1-88.diff.gz cron_3.0pl1-88.dsc to pool/main/c/cron/cron_3.0pl1-88.dsc cron_3.0pl1-88_i386.deb to pool/main/c/cron/cron_3.0pl1-88_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]> (supplier of updated cron package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Tue, 5 Jul 2005 16:39:29 +0200 Source: cron Binary: cron Architecture: source i386 Version: 3.0pl1-88 Distribution: unstable Urgency: low Maintainer: Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]> Changed-By: Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]> Description: cron - management of regular background processing Closes: 18733 46779 198211 231172 264320 279429 279613 300725 315509 Changes: cron (3.0pl1-88) unstable; urgency=low . * Taken over maintainership of this package and made the "Let's clean up the bug list" release * Added a debian/TODO file with some tasks not done in this upload. * Use patch provided by Marc Dequenes to fix FTBFS on Hurd (due to the use of selinux) (Closes: #279429) * Enable pam_limits.so in the default configuration (Closes: #300725) * Fix standard.daily so it can cope with mount points with spaces (Closes: #198211) * Standard.daily now warns if no lost+found directory was found in a local ext2/3 filesystem (Closes: #46779) [as the other wishlists are checksecurity related] * Standard.daily now will also check xfs filesystems (Closes: #279613) * Fix crontab.5's example to prevent confusion to users, default shell is always /bin/sh (Closes: #231172) * SELinux related fixes: - Applied Russell Coker patches to fix three bugs that appear when using SELinux (Closes: #264320) - Applied Manoj Srivastava's patches to turn on SELinux support (Closes: #315509) * Add help text when creating new crontabs as suggested by Anthony Towns (Closes: #18733) * Use debhelper version 4 instead of the deprecated version 3, removed debian/conffiles as it is no longer needed. Files: 677d152236d8d5d4cd85a03f9ce1c36b 770 admin important cron_3.0pl1-88.dsc 76e7d0e64056fdf4c152d61b41e2324d 48453 admin important cron_3.0pl1-88.diff.gz 709ccb07edc57ff10672fed3ce6a2fcd 59786 admin important cron_3.0pl1-88_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iQCVAwUBQvr5KPtEPvakNq0lAQJVIQQAgx6JoUF8oJjkhdqvzXz2dKs4szy8aRir LJMVSyD35NU2ICl+rF3jeNmjkdUZGfx+mhxrV1RIDsrg0cxsmUHjET2VxJwyrpio 9CaXA0E3yHNQ/Ln+ic/dSyFYpoAKUe0+/7WzE1ytU+KZ20Cj7P3pVrJV130fBqIj M4NjrAuCTuY= =D+k4 -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

