search for: opt_ignore_existing

Displaying 17 results from an estimated 17 matches for "opt_ignore_existing".

2005 Apr 06
2
backup option
Hi, I have question about the behavior of --backup-dir with --delete-after option. In my testing with version 2.6.4, it appears that the backup option only backups altered files. Files that will be deleted on the destination system will NOT be placed in --backup-dir location. I would like to back up deleted files. Is there a way to do this? Thanks
2002 Mar 08
1
[PATCH][RFC] space saving incrementals
...exclude files matching PATTERN\n"); @@ -266,7 +271,8 @@ OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, OPT_NO_WHOLE_FILE, - OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; + OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING, + OPT_COMPARE_PERMS, OPT_LINK_DEST}; static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ @@ -302,6 +308,7 @@ {"no-whole-file", 0,...
2002 Sep 10
0
[PATCH] Add --preserve-atime switch to rsync
...cks\n"); *************** *** 287,293 **** OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, ! OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ --- 289,296 ---- OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, O...
2005 Apr 25
2
How about a --min-size option, next to --max-size
There's a rather old bug report in Debian's bug tracking system (see http://bugs.debian.org/27126) about wanting to be able to specify the maximum file size, as well as the minimum file size. Here's the text: Sometimes, it's useful to specify a file size range one is interested in. For example, I'd like to keep an up-to-date mirror of Debian, but I currently
2004 Apr 27
1
[PATCH] Inplace option for rsync
...erent of \"unsafe\" symlinks\n"); @@ -321,6 +323,7 @@ {"delete", 0, POPT_ARG_NONE, &delete_mode, 0, 0, 0 }, {"existing", 0, POPT_ARG_NONE, &only_existing, 0, 0, 0 }, {"ignore-existing", 0, POPT_ARG_NONE, &opt_ignore_existing, 0, 0, 0 }, + {"inplace", 0, POPT_ARG_NONE, &inplace, 0, 0, 0 }, {"delete-after", 0, POPT_ARG_NONE, 0, OPT_DELETE_AFTER, 0, 0 }, {"delete-excluded", 0, POPT_ARG_NONE, 0, OPT_DELETE_EXCLUDED, 0, 0 }, {&qu...
2002 May 04
1
A simpler move-files patch
...T_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, - OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, + OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, OPT_MOVE_FILES, OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; static struct poptOption long_options[] = { @@ -365,6 +367,7 @@ {"hard-links", 'H', POPT_ARG_NONE, &preserve_hard_links , 0, 0, 0 }, {"read-batch", 0, POPT_ARG_STRING, &batch_prefix, OPT_READ_BATCH, 0, 0 }, {"write-batch",...
2003 Oct 01
1
PATCH: option to ignore case in filenames
...v', POPT_ARG_NONE, 0, 'v', 0, 0 }, {"quiet", 'q', POPT_ARG_NONE, 0, 'q', 0, 0 }, {"archive", 'a', POPT_ARG_NONE, 0, 'a', 0, 0 }, @@ -819,6 +822,9 @@ if (opt_ignore_existing && am_sender) args[ac++] = "--ignore-existing"; + + if (ignore_case) + args[ac++] = "--ignorecase"; if (tmpdir) { args[ac++] = "--temp-dir";
2004 Oct 05
0
new option implemented: --delete-mdays
...files\n"); --- 262,271 ---- *************** *** 337,347 **** {"delete", 0, POPT_ARG_NONE, &delete_mode, 0, 0, 0 }, {"existing", 0, POPT_ARG_NONE, &only_existing, 0, 0, 0 }, {"ignore-existing", 0, POPT_ARG_NONE, &opt_ignore_existing, 0, 0, 0 }, {"delete-after", 0, POPT_ARG_NONE, 0, OPT_DELETE_AFTER, 0, 0 }, {"delete-excluded", 0, POPT_ARG_NONE, 0, OPT_DELETE_EXCLUDED, 0, 0 }, - {"delete-mdays", 0, POPT_ARG_INT, &delete_mdays, 0, 0, 0 },...
2004 Jan 17
1
--delete-sent-files (AKA --move-files)
...if (argc == 0) { list_only = 1; Index: options.c --- options.c 15 Jan 2004 17:43:34 -0000 1.124 +++ options.c 17 Jan 2004 05:04:55 -0000 @@ -81,12 +81,14 @@ int copy_unsafe_links=0; int size_only=0; int bwlimit=0; int delete_after=0; +int delete_sent_files = 0; int only_existing=0; int opt_ignore_existing=0; int max_delete=0; int ignore_errors=0; int modify_window=0; int blocking_io=-1; +int need_messages_from_generator = 0; unsigned int block_size = 0; @@ -245,6 +247,7 @@ void usage(enum logcode F) rprintf(F," --delete delete files that don't exist on the sen...
2003 Sep 14
2
rsync error: error in rsync protocol data stream (code 12) at io.c(463)
Hi, I'm having a problem rsyncing one file (since I signed it). It seems that the content of a file is able to cause problems in the protocol. building file list ... 28820 files to consider apt/packages/avifile/ apt/packages/avifile/avifile-0.7.34-1.dag.rh90.i386.rpm rsync: error writing 4 unbuffered bytes - exiting: Broken pipe rsync error: error in rsync protocol data stream (code
2003 Jan 14
4
specifying a list of files to transfer
...prefer IPv4\n"); @@ -287,7 +295,8 @@ OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, - OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; + OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING, + OPT_SOURCE_LIST, OPT_NULL, OPT_SEND_DIRS, OPT_NO_IMPLICIT_DIRS}; static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ @@ -361,6 +370,10 @@ {&q...
2004 Apr 19
3
[PATCH] time limit
...--- rsync-2.6.1pre-2/options.c 2004-04-17 13:07:23.000000000 -0400 +++ rsync-2.6.1pre-2_modified/options.c 2004-04-19 16:07:57.000000000 -0400 @@ -83,6 +83,7 @@ int copy_unsafe_links = 0; int size_only = 0; int bwlimit = 0; +int timelimit = 0; int delete_after = 0; int only_existing = 0; int opt_ignore_existing = 0; @@ -288,6 +289,7 @@ rprintf(F," --log-format=FORMAT log file transfers using specified format\n"); rprintf(F," --password-file=FILE get password from FILE\n"); rprintf(F," --bwlimit=KBPS limit I/O bandwidth, KBytes per second\n&quot...
2002 Aug 05
5
[patch] read-devices
...AT, OPT_PASSWORD_FILE, OPT_SIZE_ONLY, OPT_ADDRESS, OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR, OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO, OPT_NO_BLOCKING_IO, OPT_WHOLE_FILE, OPT_NO_WHOLE_FILE, - OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING}; + OPT_MODIFY_WINDOW, OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_IGNORE_EXISTING, OPT_READ_DEVICES}; static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ {"version", 0, POPT_ARG_NONE, 0, OPT_VERSIO...
2004 Apr 22
2
[PATCH] --timelimit and --stopat
...--- rsync-2.6.1pre-2/options.c 2004-04-17 13:07:23.000000000 -0400 +++ rsync-2.6.1pre-2_modified/options.c 2004-04-22 15:46:03.000000000 -0400 @@ -83,6 +83,7 @@ int copy_unsafe_links = 0; int size_only = 0; int bwlimit = 0; +int timelimit = 0; int delete_after = 0; int only_existing = 0; int opt_ignore_existing = 0; @@ -142,6 +143,9 @@ * address, or a hostname. **/ char *bind_address; +/** YYMMDDHHMMSS format for the --stopat */ +char *stopat; + static void print_rsync_version(enum logcode f) { @@ -288,6 +292,8 @@ rprintf(F," --log-format=FORMAT log file transfers using specified...
2003 Mar 30
1
[RFC][patch] dynamic rolling block and sum sizes II
...e != BLOCK_SIZE) { + if (block_size) { snprintf(bsize,sizeof(bsize),"-B%d",block_size); args[ac++] = bsize; } --- generator.c Sat Mar 29 12:24:49 2003 +++ generator.c Sat Mar 29 16:21:55 2003 @@ -32,7 +32,6 @@ extern int preserve_hard_links; extern int update_only; extern int opt_ignore_existing; -extern int block_size; extern int csum_length; extern int ignore_times; extern int size_only; @@ -100,24 +99,9 @@ } -/* use a larger block size for really big files */ -static int adapt_block_size(struct file_struct *file, int bsize) -{ - int ret; - - if (bsize != BLOCK_SIZE) return bsize...
2005 Jan 05
1
rsync filename heuristics
...rn; > - } > - > - if (!S_ISREG(st.st_mode)) { > - if (delete_file(fname) != 0) { > - return; > - } > - > - /* now pretend the file didn't exist */ > - write_int(f_out,i); > - if (!dry_run) send_sums(NULL,f_out); > - return; > - } > - > - if (opt_ignore_existing && fnamecmp == fname) { > - if (verbose > 1) > - rprintf(FINFO,"%s exists\n",fname); > - return; > - } > - > - if (update_only && cmp_modtime(st.st_mtime,file->modtime)>0 && fnamecmp == fname) { > + /* Failed to stat for some oth...
2003 Mar 23
1
[RFC] dynamic checksum size
...e MD4_SUM_LENGTH 16 #define SUM_LENGTH 16 +#define SHORT_SUM_LENGTH 2 #ifndef MAXPATHLEN #define MAXPATHLEN 1024 --- generator.c Sat Mar 22 09:47:43 2003 +++ generator.c.varsumlen Sat Mar 22 10:41:12 2003 @@ -32,7 +32,6 @@ extern int preserve_hard_links; extern int update_only; extern int opt_ignore_existing; -extern int block_size; extern int csum_length; extern int ignore_times; extern int size_only; @@ -93,20 +92,6 @@ } -/* use a larger block size for really big files */ -static int adapt_block_size(struct file_struct *file, int bsize) -{ - int ret; - - if (bsize != BLOCK_SIZE) return bsize;...