[go: up one dir, main page]

File: dwww.cron.weekly

package info (click to toggle)
dwww 1.10.3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 676 kB
  • ctags: 261
  • sloc: perl: 2,774; ansic: 1,507; makefile: 153; sh: 130
file content (17 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# $Id: dwww.cron.weekly,v 1.2 2006-05-30 18:56:45 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

dwww-index++ > /dev/null

exit 0