Re: One more question re: daily chron job...

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Jason Holtzapple
Date:  
To: Main PLUG discussion list
Subject: Re: One more question re: daily chron job...

--- On Tue, 5/26/09, Jim March <> wrote:
> Folks,
>
> Last time we wrestled with this, we learned that Zoneminder
> (camera
> monitor app) can do purges of older files.  Except it
> doesn't work.
> I've tried three times now, it still fills the disk, I'm
> flat sick and
> tired of it.
>
> There has to be a way in Ubuntu (Jaunty) to do a daily
> purge chron job
> to the effect of:
>
> ---
> sudo find /media/disk/* -mtime +45 -exec rm {} \;
> ---
>
> That command works fine, executed manually.  It purges
> files older
> than 45 days on a particular hard disk formatted ReiserFS
> (due to the
> high number of small files).
>
> Any way I can get it to kick off daily?


Do you see any cron errors in /var/log/syslog when the job starts?

If you're going to use sudo, you'll need to set up NOPASSWD or
something similar in your sudoers file. I'd skip that and just
add a job to your root user crontab:

0 0 * * * find /media/disk -type f -mtime +45 -exec rm -f {} \;

--Jason
---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss