Package: apt-xapian-index
Version: 0.15
Severity: serious
I had the package installed as a dependency from goplay, so when I removed
goplay from my system, apt-xapian-index automatically got removed too.
Today I got a cron mail with:
run-parts: /etc/cron.weekly/apt-xapian-index exited with return code 1
Reason is that the script has:
CMD=/usr/sbin/update-apt-xapian-index
test -x $CMD && $CMD --quiet
The 'test -x' will return 1 if the command does not exist.
Better would be:
if [ -x $CMD ]; then
$CMD --quiet
fi
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.28-rc0 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages apt-xapian-index depends on:
ii python 2.5.2-2 An interactive high-level object-o
ii python-apt 0.7.7.1 Python interface to libapt-pkg
pn python-debian <none> (no description available)
pn python-xapian <none> (no description available)
apt-xapian-index recommends no packages.
apt-xapian-index suggests no packages.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]