Re: rsync hangs in cron (not SSH-problem)

2004-06-03 Thread Tim Conway
I would suggest that you put those commandlines into scripts, and redirect stdout, stderr, AND stdin - "rsync -av --delete /mnt/web1 /mass/kuurne/day logfile 2>&1", for instance, or if you're wanting it just mailed like cron will do, "rsync -av --delete /mnt/web1 /mass/kuurne/day &1 |mail $USER

Re: rsync hangs in cron (not SSH-problem)

2004-06-02 Thread Pascal Nobus
This is the case - mounted Inetpub's windows-webserver on /mnt/web1 /mnt/web2, etc. - rsync this to local dir: rsync -av --delete /mnt/web1 /mass/kuurne/day rsync -av --delete /mnt/web2 /mass/kuurne/day etc.. - when logged in, everything works (I do see some errors about no

Re: rsync hangs in cron (not SSH-problem)

2004-05-27 Thread Chris Shoemaker
On Fri, May 21, 2004 at 02:55:37AM +0200, Pascal Nobus wrote: > This is the case > > - mounted Inetpub's windows-webserver on /mnt/web1 /mnt/web2, etc. > - rsync this to local dir: > rsync -av --delete /mnt/web1 /mass/kuurne/day > rsync -av --delete /mnt/web2 /mass/kuurne/day > e

Re: rsync hangs in cron (not SSH-problem)

2004-05-24 Thread Paul Slootman
On Fri 21 May 2004, Pascal Nobus wrote: > When used this command in cron > > 00 01 * * * rsync -av --delete /mnt/web1 /mass/kuurne/day > 00 02 * * * rsync -av --delete /mnt/web2 /mass/kuurne/day > etc.. > > > Rsync hangs, it doesn't finish! Does it eat cpu time, of does it just sit there? Use

Re: rsync hangs in cron (not SSH-problem)

2004-05-21 Thread Jeffrey Layton
On Thu, 2004-05-20 at 20:55, Pascal Nobus wrote: > When used this command in cron > > 00 01 * * * rsync -av --delete /mnt/web1 /mass/kuurne/day > 00 02 * * * rsync -av --delete /mnt/web2 /mass/kuurne/day > etc.. > Not sure if this is your problem or not, but I had some problems running rsync ou