summaryrefslogtreecommitdiffstats
path: root/cups.cron
diff options
context:
space:
mode:
Diffstat (limited to 'cups.cron')
-rwxr-xr-xcups.cron8
1 files changed, 8 insertions, 0 deletions
diff --git a/cups.cron b/cups.cron
new file mode 100755
index 0000000..72f91d8
--- /dev/null
+++ b/cups.cron
@@ -0,0 +1,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