On Sat, Aug 04, 2007 at 04:02:24PM +0200, Filippo Giunchedi wrote: > log available at: > http://svn.debian.org/wsvn/collab-qa/crontest/2007-08-04/logs/diffmon_20020222-2.3_sid.cronlog?op=file > > reported below: > REMOVE CRON.DAILY [] ['/etc/cron.daily/diffmon: line 5: diffmon: command not > found\n'] > AUTOREMOVE CRON.DAILY [] ['/etc/cron.daily/diffmon: line 5: diffmon: command > not found\n'] > > you should check that diffmon is there and executable
attached there's the NMU patch fixing this bug. filippo -- Filippo Giunchedi - http://esaurito.net PGP key: 0x6B79D401 random quote follows: Date: Tuesday, 2002/10/22 - 08:09 dselect proves the existence of Satan. It's the worst part of Debian.
diff -Nru diffmon-20020222/debian/changelog diffmon-20020222/debian/changelog --- diffmon-20020222/debian/changelog 2007-02-02 06:02:31.000000000 +0100 +++ diffmon-20020222/debian/changelog 2008-05-01 16:31:04.000000000 +0200 @@ -1,3 +1,10 @@ +diffmon (20020222-2.4) unstable; urgency=low + + * Non-maintainer upload. + * Include check for diffmon's executability in cron.daily (Closes: #435987) + + -- Filippo Giunchedi <[EMAIL PROTECTED]> Thu, 01 May 2008 16:30:21 +0200 + diffmon (20020222-2.3) unstable; urgency=low * Non-maintainer upload. diff -Nru diffmon-20020222/debian/diffmon.cron.daily diffmon-20020222/debian/diffmon.cron.daily --- diffmon-20020222/debian/diffmon.cron.daily 2002-02-22 18:50:34.000000000 +0100 +++ diffmon-20020222/debian/diffmon.cron.daily 2008-05-01 16:30:18.000000000 +0200 @@ -1,6 +1,6 @@ #!/bin/sh -if [ -r /etc/diffmon/diffmon.cf ]; then +if [ -r /etc/diffmon/diffmon.cf ] && [ -x /usr/bin/diffmon ] ; then diffmon -c diffmon.cf

