/etc/cron.hourly/changetrack is in changetrack 4.7-4.
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 23 24 25 26 27 | #!/bin/sh
##
## This code was pu in the Public Domain by Jens Peter Secher.
##
## No arms, no cookies
PROGRAM=/usr/bin/changetrack
[ -x $PROGRAM ] || exit 0
## Get default settings
[ -r /etc/default/changetrack ] && . /etc/default/changetrack
## If RCS is not installed, do not use it
if [ ! -x /usr/bin/rcs ]; then
PARAMS="-r $PARAMS"
## If ed is available, use him instead
if [ -x /bin/ed ]; then
PARAMS="-e $PARAMS"
fi
fi
## Try to generate a list of files to watch
[ -r ${CONFFILES_LIST:?} ] || /etc/cron.daily/changetrack
## Only run if there is a list of files to watch
[ -r ${CONFFILES_LIST:?} ] && nice $PROGRAM $PARAMS -c $CONFFILES_LIST > /dev/null 2>&1
|