summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@homebase.dk>2011-05-10 14:55:03 +0200
committerroot <root@homebase.dk>2012-09-09 17:48:56 +0200
commita32f018c65f40e17b7142eb2a41bcd04e3bb62df (patch)
tree5ca701a2c3e2c6a50ea91b077eef58b5a9707aa6
parentac74ca7e022dce5d83a89c63aaa683bc524bf84f (diff)
Drop obsoloete script localrmtoobig.
-rwxr-xr-xlocalrmtoobig23
1 files changed, 0 insertions, 23 deletions
diff --git a/localrmtoobig b/localrmtoobig
deleted file mode 100755
index 0a098c5..0000000
--- a/localrmtoobig
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# /usr/local/sbin/localrmtoobig
-# Copyright 2001 Jonas Smedegaard <dr@jones.dk>
-#
-# $Id: localrmtoobig,v 1.1 2002-03-09 20:41:48 jonas Exp $
-#
-# It seems netatalk has problems dealing with Eudora:
-# Occasionally files in the "Attachments Folder" explodes
-# to sizes in the area 80-100 Megabytes.
-#
-# This script is the simple "solution": delete huge files...
-#
-# I put it in a cron job once a month just before an
-# rsync script to mirror all homes to another machine.
-#
-# UPDATE: The script has had no use lately - either netatalk has fixed the
-# problem, or only old versions of Eudora has this faulty behaviour.
-#
-
-BASE=/home
-
-find $BASE -path '*Attachments*' -size +15000k -exec rm '{}' ';'