f3e285ba7d
The only change in the default functionality should be that the output reports are slightly more verbose WRT files deleted. Not objected to by: freebsd-arch
38 lines
824 B
Bash
Executable File
38 lines
824 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# Remove garbage files more than $daily_clean_disks_days days old
|
|
#
|
|
|
|
# If there is a global system configuration file, suck it in.
|
|
#
|
|
if [ -r /etc/defaults/periodic.conf ]
|
|
then
|
|
. /etc/defaults/periodic.conf
|
|
source_periodic_confs
|
|
fi
|
|
|
|
case "$daily_clean_disks_enable" in
|
|
[Yy][Ee][Ss])
|
|
if [ -n "$daily_clean_disks_days" -a -n "$daily_clean_disk_files" ]
|
|
then
|
|
echo ""
|
|
echo "Removing old temporary files:"
|
|
set -f noglob
|
|
args="$args "`echo " ${daily_clean_disks_files% }" |
|
|
sed 's/[ ][ ]*/ -name /g'`
|
|
|
|
case "$daily_clean_tmps_verbose" in
|
|
[Yy][Ee][Ss])
|
|
print=-print;;
|
|
*)
|
|
print=;;
|
|
esac
|
|
|
|
find / \( ! -fstype local -o -fstype rdonly \) -a -prune -o \
|
|
\( $args \) -atime +$daily_clean_disks_days -delete $print
|
|
set -f glob
|
|
fi;;
|
|
esac
|