/etc/cron.weekly/dwww is in dwww 1.12.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
# $Id: dwww.cron.weekly,v 1.3 2007-12-16 09:56:31 robert Exp $
#
# This script creates an index of Debian documentation registered
# with doc-base. See dwww-index++(8) man page for details.
# check if swish++ is installed
test -x /usr/bin/index++ || exit 0
# check if dwww is still installed
test -x /usr/sbin/dwww-index++ || exit 0
set -e
# See ionice(1)
[ -x /usr/bin/ionice ] && IONICE="/usr/bin/ionice -c3 -t" || IONICE=
$IONICE dwww-index++ > /dev/null
exit 0
|