summaryrefslogtreecommitdiff
path: root/app-admin/tmpwatch/files/tmpwatch.cron
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-admin/tmpwatch/files/tmpwatch.cron
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-admin/tmpwatch/files/tmpwatch.cron')
-rw-r--r--app-admin/tmpwatch/files/tmpwatch.cron47
1 files changed, 0 insertions, 47 deletions
diff --git a/app-admin/tmpwatch/files/tmpwatch.cron b/app-admin/tmpwatch/files/tmpwatch.cron
deleted file mode 100644
index 806b1453e552..000000000000
--- a/app-admin/tmpwatch/files/tmpwatch.cron
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-# vim: ft=sh
-
-# This cron script contains several (commented out) examples. You may use
-# them as is, by uncommenting them, or modify them to suit your needs. Read
-# tmpwatch(8) for more information on tmpwatch parameters.
-
-### Variables ###
-
-TMPWATCH="/usr/sbin/tmpwatch"
-#PORTAGE_TMPDIR="$(portageq envvar PORTAGE_TMPDIR)/portage"
-#PORTAGE_LOGDIR="$(portageq envvar PORT_LOGDIR)"
-#DISTDIR="$(portageq distdir)"
-
-### EXAMPLES ###
-
-# NOTE: if you have noatime in /etc/fstab for any partitions you plan on
-# running tmpwatch on, you should obviously change any of the examples that
-# use atime (-u|--atime). Those that don't specify anything, default to
-# atime.
-
-# NOTE2: the time value is in HOURS!
-
-# Delete everything in /tmp that haven't been accessed in a week (>=168 hrs).
-#
-# if [[ -d /tmp ]]; then
-# ${TMPWATCH} --atime 168 /tmp
-# fi
-
-# Delete everything in PORTAGE_TMPDIR that hasn't been modified in 2 weeks.
-#
-# if [[ -d ${PORTAGE_TMPDIR:-/var/tmp/portage} && -z $(/usr/bin/pgrep emerge) ]]; then
-# ${TMPWATCH} --mtime --all 336 ${PORTAGE_TMPDIR:-/var/tmp/portage}
-# fi
-
-# Delete everything in DISTDIR that hasn't been accessed in 6 months (going
-# by 30 day months)
-#
-# if [[ -d ${DISTDIR:-/usr/portage/distfiles} ]]; then
-# ${TMPWATCH} --atime --fuser 4320 ${DISTDIR:-/usr/portage/distfiles}
-# fi
-
-# Delete everything in PORTAGE_LOGDIR that hasn't been accessed in 4 weeks
-#
-# if [[ -d ${PORTAGE_LOGDIR:-/var/log/portage} ]]; then
-# ${TMPWATCH} --atime 772 ${PORTAGE_LOGDIR:-/var/log/portage}
-# fi