summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/100.clean-disks
blob: 2efe3b5d6f1f4be24ddcd421bcdde6dcdd21a9c8 (plain)
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
#!/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
OpenPOWER on IntegriCloud