summaryrefslogtreecommitdiffstats
path: root/cups.cron
blob: 72f91d867dd84a21e006b0e23a9947a0e00749f8 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
for d in /var/spool/cups/tmp
do
    if [ -d "$d" ]; then
	/usr/sbin/tmpwatch -f 720 "$d"
    fi
done
exit 0