Skip to content

Commit

Permalink
Add a few new "dont compress" suffixes and improve the docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayne Davison committed Sep 5, 2009
1 parent 2f1fb73 commit 4b660ba
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
3 changes: 2 additions & 1 deletion loadparm.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ extern item_list dparam_list;
#endif

#define DEFAULT_DONT_COMPRESS "*.gz *.zip *.z *.rpm *.deb *.iso *.bz2" \
" *.t[gb]z *.7z *.mp[34] *.mov *.avi *.ogg *.jpg *.jpeg"
" *.t[gb]z *.7z *.mp[34] *.mov *.avi *.ogg *.jpg *.jpeg" \
" *.lzo *.rzip *.lzma *.rar *.ace *.gpg"

/* the following are used by loadparm for option lists */
typedef enum {
Expand Down
32 changes: 27 additions & 5 deletions rsync.yo
Original file line number Diff line number Diff line change
Expand Up @@ -1723,7 +1723,7 @@ You may specify an empty string to indicate that no file should be skipped.

Simple character-class matching is supported: each must consist of a list
of letters inside the square brackets (e.g. no special classes, such as
"[:alpha:]", are supported).
"[:alpha:]", are supported, and '-' has no special meaning).

The characters asterisk (*) and question-mark (?) have no special meaning.

Expand All @@ -1732,10 +1732,32 @@ matches 2 suffixes):

verb( --skip-compress=gz/jpg/mp[34]/7z/bz2)

The default list of suffixes that will not be compressed is this (several
of these are newly added for 3.0.0):

verb( gz/zip/z/rpm/deb/iso/bz2/t[gb]z/7z/mp[34]/mov/avi/ogg/jpg/jpeg)
The default list of suffixes that will not be compressed is this (in this
version of rsync):

bf(7z)
bf(ace)
bf(avi)
bf(bz2)
bf(deb)
bf(gpg)
bf(gz)
bf(iso)
bf(jpeg)
bf(jpg)
bf(lzma)
bf(lzo)
bf(mov)
bf(mp3)
bf(mp4)
bf(ogg)
bf(rar)
bf(rpm)
bf(rzip)
bf(tbz)
bf(tgz)
bf(z)
bf(zip)

This list will be replaced by your bf(--skip-compress) list in all but one
situation: a copy from a daemon rsync will add your skipped suffixes to
Expand Down

0 comments on commit 4b660ba

Please sign in to comment.