Re: rsync email notification on success and failure + Log

2010-01-05 Thread henri
> I have a bash script for rsync that should tranfer all my filer from one > drive to the other. > > I would like to know how I can make the script sending me an email after the > script is run and be able to know if it was a success or not and also if > possible to include the log file. You

Re: rsync email notification on success and failure + Log

2010-01-01 Thread Warren Oates
Hi: Let cron(8) run your script for you. Cron will happily email you the verbose output from rsync after its task has run. man cron man crontab man 5 crontab On Tue, Dec 29, 2009 at 7:12 PM, Sébastien Arpin wrote: > Hi, > > I have a bash script for rsync that should tranfer all my filer from one

Re: rsync email notification on success and failure + Log

2009-12-29 Thread Eberhard Moenkeberg
Hi, On Wed, 30 Dec 2009, Sébastien Arpin wrote: I have a bash script for rsync that should tranfer all my filer from one drive to the other. I would like to know how I can make the script sending me an email after the script is run and be able to know if it was a success or not and also if

rsync email notification on success and failure + Log

2009-12-29 Thread Sébastien Arpin
Hi, I have a bash script for rsync that should tranfer all my filer from one drive to the other. I would like to know how I can make the script sending me an email after the script is run and be able to know if it was a success or not and also if possible to include the log file. Th