Re: Difference in vv output with --delete-exclude

2001-02-11 Thread Martin Pool

On 10 Feb 2001, Harry Putnam [EMAIL PROTECTED] wrote:

 What happened to the nifty diagnostic output?

Good question.  I'll have a look at the source.  What version are you
running?  I thought the include/exclude diagnostics for -vv were not
released yet.

-- 
Martin Pool, Human Resource
Linuxcare. Inc.   +61 2 6262 8990
[EMAIL PROTECTED], http://linuxcare.com.au/
Linuxcare.  Putting Open Source to work.




Re: Difference in vv output with --delete-exclude

2001-02-11 Thread Harry Putnam

Martin Pool [EMAIL PROTECTED] writes:

 On 10 Feb 2001, Harry Putnam [EMAIL PROTECTED] wrote:
 
  What happened to the nifty diagnostic output?
 
 Good question.  I'll have a look at the source.  What version are you
 running?  I thought the include/exclude diagnostics for -vv were not
 released yet.

I'm running:

rsync version 2.4.6  protocol version 24
Configuration: 64-bit files, socketpairs

Of a few days ago.

We may be talking about different things here.  All I meant was the
verbose output of using -vv gets shut off somehow by using the
--delete-exclude flag.




Difference in vv output with --delete-exclude

2001-02-10 Thread Harry Putnam


I've found that running a dry run with -navv will give a good readout
allowing me to see how my exclude include rules are working.

However if I add --exclude-delete to the same command line.  The -vv
output is silenced.

[NOTE: command lines are shown wrapped but in use, were both on a
single line].

Without that flag:

 # rsync -navv --stats  --delete  --include "*/" \
--exclude "alpha/*" --exclude "alphaev6/*" \
ftp.wtfo.com::rh-ftp/redhat-7.0/updates/ /mnt/hdc6/7.0up

  WTFO Mirror FTP Site

Please report any problems immediately to [EMAIL PROTECTED].

receiving file list ... done
including directory i386 because of pattern */
including directory i586 because of pattern */
including directory i686 because of pattern */
including directory images because of pattern */
including directory images/i386 because of pattern */
including directory noarch because of pattern */
including directory SRPMS because of pattern */
including directory alphaev6 because of pattern */
including directory alpha because of pattern */
excluding file alpha/.listing because of pattern alpha/*
excluding file alpha/apache-1.3.14-3.alpha.rpm because of 
pattern alpha/*
deleting in .

Number of files: 157
Number of files transferred: 0
Total file size: 399817537 bytes
Total transferred file size: 0 bytes
Literal data: 0 bytes
Matched data: 0 bytes
File list size: 5419
Total bytes written: 133
Total bytes read: 5574

wrote 133 bytes  read 5574 bytes  2282.80 bytes/sec
total size is 399817537  speedup is 70057.39
[209 root]/mnt/pack/rc/rsync.rc


Then with the flag:

 # rsync -navv --stats  --delete --delete-exclude \
 --include "*/" --exclude "alpha/*" --exclude \
"alphaev6/*" ftp.wtfo.com::rh-ftp/redhat-7.0/updates/ /mnt/hdc6/7.0up
  WTFO Mirror FTP Site

Please report any problems immediately to [EMAIL PROTECTED].

receiving file list ... done
deleting in .
deleting alpha/apache-1.3.14-3.alpha.rpm
deleting alpha/.listing

Number of files: 157
Number of files transferred: 0
Total file size: 399817537 bytes
Total transferred file size: 0 bytes
Literal data: 0 bytes
Matched data: 0 bytes
File list size: 5419
Total bytes written: 142
Total bytes read: 5574

wrote 142 bytes  read 5574 bytes  2286.40 bytes/sec
total size is 399817537  speedup is 69947.08
[209 root]/mnt/pack/rc/rsync.rc
 # 

What happened to the nifty diagnostic output?