/etc/default/durep-rolling is in durep 0.9-3.
This file is owned by root:root, with mode 0o644.
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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | ########## /etc/default/durep-rolling
# configuration file for /etc/cron.daily/durep-rolling
# $Id: durep-rolling-etc,v 1.1 2002-12-15 12:55:39+11 matthewa Exp matthewa $
# where the web content is to be located
HTTPFILEROOT=""
# if non-empty, set the list filesystems (by mount-points) to report on
# if empty, durep cron job is not executed
# Format: paths with spaces between, e.g.
# FILESYSTEMS="/ /usr /var"
FILESYSTEMS=""
# where to dump the report data snapshots
DUREP_DATA_PATH="/var/lib/durep"
# min. folder size to report on, e.g. "50m" for 50 megs
SIZE_CUTOFF="50m"
# Pruning age for database files.
#
# This setting determines when files are removed from $DUREP_DATA_PATH.
# The value is used to produce a list of old files, by invoking
#
# find $DUREP_DATA_PATH -mtime "$MAXAGE"
#
# and all listed files are then removed. The suggested value "+7" would
# remove files older than seven days. See the manpage find(1) for details,
# the text for the option '-mtime'.
DUREP_MAXAGE="+15"
# where is the durep script?
DUREP="/usr/bin/durep"
# set DEBUG to "on" to print variables in the cron script instead of doing stuff
DEBUG="off"
|