diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-02-16 08:42:42 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-02-16 08:42:42 +0100 |
commit | 70f0371ab19ca921288bc5fd9262f746afb2bdb6 (patch) | |
tree | 73b366a214c4c97736cede6010f44c63d6f2b661 /base/rsync/rsync.driver | |
parent | 3991823309439e339648dab4ca3da1fb3967165d (diff) | |
download | nutyx-extra-70f0371ab19ca921288bc5fd9262f746afb2bdb6.tar.gz nutyx-extra-70f0371ab19ca921288bc5fd9262f746afb2bdb6.tar.bz2 nutyx-extra-70f0371ab19ca921288bc5fd9262f746afb2bdb6.tar.xz nutyx-extra-70f0371ab19ca921288bc5fd9262f746afb2bdb6.zip |
rsync, maj 3.07-1, ajout du filtre
Diffstat (limited to 'base/rsync/rsync.driver')
-rw-r--r-- | base/rsync/rsync.driver | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/rsync/rsync.driver b/base/rsync/rsync.driver index 21fd54c45..ecd087d65 100644 --- a/base/rsync/rsync.driver +++ b/base/rsync/rsync.driver @@ -78,7 +78,7 @@ error("Running rsync failed") unless $? == 0; print "Updating collection " . basename($destination) . "\n"; # now really run rsync -open(PIPE, 'rsync -crz --log-format "%o %n" rsync://' . $host . "/$collection $destination|") or error("Couldn't open pipe to rsync"); +open(PIPE, 'rsync -crz --exclude=.footprint.ARCH --exclude=.md5sum.ARCH --log-format "%o %n" rsync://' . $host . "/$collection $destination|") or error("Couldn't open pipe to rsync"); while (<PIPE>) { chomp; |