Displaying 20 results from an estimated 76 matches for "popt_arg_non".
Did you mean:
popt_arg_none
2004 Feb 20
1
[patch] fix for "refuse options" ignored due to popt
...NDOW,
- OPT_READ_BATCH, OPT_WRITE_BATCH};
+ OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_CHECKSUM, OPT_COMPRESS};
static struct poptOption long_options[] = {
/* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
@@ -336,7 +336,7 @@
{"group", 'g', POPT_ARG_NONE, &preserve_gid, 0, 0, 0 },
{"devices", 'D', POPT_ARG_NONE, &preserve_devices, 0, 0, 0 },
{"times", 't', POPT_ARG_NONE, &preserve_times, 0, 0, 0 },
- {"checksum", 'c', POPT_ARG_NONE, &alway...
2002 Mar 12
2
Patch: --drop-suid Remove suid/sgid from target files
...ndle sparse files efficiently\n");
rprintf(F," -n, --dry-run show what would have been transferred\n");
rprintf(F," -W, --whole-file copy whole files, no incremental checks\n");
@@ -304,6 +306,7 @@
{"perms", 'p', POPT_ARG_NONE, &preserve_perms},
{"owner", 'o', POPT_ARG_NONE, &preserve_uid},
{"group", 'g', POPT_ARG_NONE, &preserve_gid},
+ {"drop-suid", 0, POPT_ARG_NONE, &drop_suid},
{"devices", ...
2003 Aug 06
1
Should --progress implicitly assert -v?
...uggest the simple patch given below. If -P or --progress is included
but the verbosity level is 0, it will automatically be incremented to 1.
Toby
--- ./options.c.orig Tue Aug 5 12:18:41 2003
+++ ./options.c Tue Aug 5 12:18:41 2003
@@ -363,7 +363,7 @@
{"daemon", 0, POPT_ARG_NONE, &am_daemon, 0, 0, 0 },
{"no-detach", 0, POPT_ARG_NONE, &no_detach, 0, 0, 0 },
{"stats", 0, POPT_ARG_NONE, &do_stats, 0, 0, 0 },
- {"progress", 0, POPT_ARG_NONE, &do_progress, 0, 0, 0 },
+ {"progress&...
2004 Nov 13
1
Archive Delete Mode
...f(F," -r, --recursive recurse into directories\n");
rprintf(F," -R, --relative use relative path names\n");
rprintf(F," --no-relative turn off --relative\n");
@@ -366,6 +368,7 @@
{"verbose", 'v', POPT_ARG_NONE, 0, 'v', 0, 0 },
{"quiet", 'q', POPT_ARG_NONE, 0, 'q', 0, 0 },
{"archive", 'a', POPT_ARG_NONE, &archive_mode, 0, 0, 0 },
+ {"archive-delete", 'A', POPT_ARG_NONE,...
2002 Mar 08
1
[PATCH][RFC] space saving incrementals
...;
+ 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, POPT_ARG_NONE, 0, OPT_NO_WHOLE_FILE},
{"copy-unsafe-links", 0, POPT_ARG_NONE, ©_unsafe_links},
{"perms", 'p', POPT_ARG_NONE, &preserve_perms},
+ {"compare-perms", 0, POPT_ARG_NONE, &compare_perms},
{"owner",...
2003 Oct 01
1
PATCH: option to ignore case in filenames
...archive archive mode, equivalent to -rlptgoD\n");
rprintf(F," -r, --recursive recurse into directories\n");
rprintf(F," -R, --relative use relative path names\n");
@@ -332,6 +334,7 @@
{"devices", 'D', POPT_ARG_NONE, &preserve_devices , 0, 0, 0 },
{"times", 't', POPT_ARG_NONE, &preserve_times , 0, 0, 0 },
{"checksum", 'c', POPT_ARG_NONE, &always_checksum , 0, 0, 0 },
+ {"ignorecase", 0, POPT_ARG_NONE, &ignore_...
2003 Apr 08
2
[Patch] Require extra --stats to emit heap statistics
...s
consistently emit a single newline prior to emitting the statistics,
thus visually separating them from whatever was displayed previously.
--- options.c.orig Mon Jan 27 19:11:57 2003
+++ options.c Sun Mar 30 15:11:58 2003
@@ -350,7 +350,7 @@
{"compress", 'z', POPT_ARG_NONE, &do_compression , 0, 0, 0 },
{"daemon", 0, POPT_ARG_NONE, &am_daemon , 0, 0, 0 },
{"no-detach", 0, POPT_ARG_NONE, &no_detach , 0, 0, 0 },
- {"stats", 0, POPT_ARG_NONE, &do_stats , 0, 0, 0 },
+ {"stat...
2004 Apr 27
1
rsync-2.6.1 close() fixes
...e newer files)\n");
rprintf(F," -l, --links copy symlinks as symlinks\n");
rprintf(F," -L, --copy-links copy the referent of all symlinks\n");
@@ -332,6 +334,7 @@ static struct poptOption long_options[]
{"safe-links", 0, POPT_ARG_NONE, &safe_symlinks, 0, 0, 0 },
{"help", 'h', POPT_ARG_NONE, 0, 'h', 0, 0 },
{"backup", 'b', POPT_ARG_NONE, &make_backups, 0, 0, 0 },
+ {"fsync", 'f', POPT_ARG_NONE, &do_...
2002 Jun 21
1
small security-related rsync extension
...--links copy symlinks as symlinks\n");
X rprintf(F," -L, --copy-links copy the referent of symlinks\n");
X@@ -291,6 +295,9 @@
X {"include-from", 0, POPT_ARG_STRING, 0, OPT_INCLUDE_FROM},
X {"safe-links", 0, POPT_ARG_NONE, &safe_symlinks},
X {"help", 'h', POPT_ARG_NONE, 0, 'h'},
X+#ifdef HAVE_CHMOD
X+ {"priv-backups", 's', POPT_ARG_NONE, &priv_backups},
X+#endif
X {"backup", 'b', POPT_ARG_NONE, &am...
2004 Oct 05
0
new option implemented: --delete-mdays
...e I/O errors\n");
rprintf(F," --max-delete=NUM don't delete more than NUM files\n");
rprintf(F," --partial keep partially transferred 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_AFT...
2003 Jan 14
3
.rsync-/.rsync+ patch and --link-dest example
...n");
rprintf(F," --ignore-existing ignore files that already exist on the receiving side\n");
rprintf(F," --delete delete files that don't exist on the sending side\n");
@@ -324,6 +326,7 @@
{"dry-run", 'n', POPT_ARG_NONE, &dry_run , 0, 0, 0 },
{"sparse", 'S', POPT_ARG_NONE, &sparse_files , 0, 0, 0 },
{"cvs-exclude", 'C', POPT_ARG_NONE, &cvs_exclude , 0, 0, 0 },
+ {"rsync-exclude", 'C', POPT_ARG_NONE, &rsync_exclude...
2004 Jan 06
2
[patch] making rsync less verbose
...rogress show progress during transfer\n");
rprintf(F," --log-format=FORMAT log file transfers using specified format\n");
rprintf(F," --password-file=FILE get password from FILE\n");
@@ -357,6 +359,7 @@
{"daemon", 0, POPT_ARG_NONE, &am_daemon, 0, 0, 0 },
{"no-detach", 0, POPT_ARG_NONE, &no_detach, 0, 0, 0 },
{"stats", 0, POPT_ARG_NONE, &do_stats, 0, 0, 0 },
+ {"speedup", 's', POPT_ARG_NONE, &show_speedup, 0, 0, 0 },
{"pr...
2004 Apr 27
1
[PATCH] Inplace option for rsync
...copy symlinks as symlinks\n");
rprintf(F," -L, --copy-links copy the referent of all
symlinks\n");
rprintf(F," --copy-unsafe-links copy the referent 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 },
{&qu...
2015 Nov 28
0
[PATCH] ignore-non-existing-directory: add variant of ignore-non-existing
...ax_size = -1;
@@ -916,6 +917,7 @@ static struct poptOption long_options[] = {
{"no-one-file-system",0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
{"no-x", 0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
{"update", 'u', POPT_ARG_NONE, &update_only, 0, 0, 0 },
+ {"ignore-non-existing-directory",0,POPT_ARG_NONE, &ignore_non_existing_dirs, 0, 0, 0 },
{"existing", 0, POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },
{"ignore-non-existing",0,POPT_ARG_NONE, &ignore_...
2004 May 06
2
rsync-2.6.2: NFS clients confused after an rsync
We use rsync to update an nfs server. After an update, we noticed that
a large number of clients didn't see the updated data.
It took me a while to be able to reliably reproduce this problem, but it
happens on old and new versions of rysnc. It also happens across all
the platforms we use here (sun/linux/netapp).
This shows the problem: [Note my home directory is NFS mounted]
2016 Jan 16
0
[PATCH v2, resend] ignore-non-existing-directory: add variant of ignore-non-existing
...ax_size = -1;
@@ -916,6 +917,7 @@ static struct poptOption long_options[] = {
{"no-one-file-system",0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
{"no-x", 0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
{"update", 'u', POPT_ARG_NONE, &update_only, 0, 0, 0 },
+ {"ignore-non-existing-directory",0,POPT_ARG_NONE, &ignore_non_existing_dirs, 0, 0, 0 },
{"existing", 0, POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },
{"ignore-non-existing",0,POPT_ARG_NONE, &ignore_...
2015 Nov 28
0
[PATCH v2] ignore-non-existing-directory: add variant of ignore-non-existing
...ax_size = -1;
@@ -916,6 +917,7 @@ static struct poptOption long_options[] = {
{"no-one-file-system",0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
{"no-x", 0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
{"update", 'u', POPT_ARG_NONE, &update_only, 0, 0, 0 },
+ {"ignore-non-existing-directory",0,POPT_ARG_NONE, &ignore_non_existing_dirs, 0, 0, 0 },
{"existing", 0, POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },
{"ignore-non-existing",0,POPT_ARG_NONE, &ignore_...
2003 Feb 16
1
rsync-exclude.patch.
...n");
rprintf(F," --ignore-existing ignore files that already exist on the receiving side\n");
rprintf(F," --delete delete files that don't exist on the sending side\n");
@@ -320,6 +321,7 @@
{"dry-run", 'n', POPT_ARG_NONE, &dry_run , 0, 0, 0 },
{"sparse", 'S', POPT_ARG_NONE, &sparse_files , 0, 0, 0 },
{"cvs-exclude", 'C', POPT_ARG_NONE, &cvs_exclude , 0, 0, 0 },
+ {"rsync-exclude", 0, POPT_ARG_STRING, &rsync_exclude , 0, 0,...
2003 Jun 24
2
[PATCH] Limit recursion depth
...use relative path names\n");
rprintf(F," -b, --backup make backups (default %s
suffix)\n",BACKUP_SUFFIX);
rprintf(F," --backup-dir make backups into this
directory\n");
@@ -338,6 +340,7 @@
{"server", 0, POPT_ARG_NONE, &am_server , 0, 0, 0 },
{"sender", 0, POPT_ARG_NONE, 0, OPT_SENDER, 0, 0
},
{"recursive", 'r', POPT_ARG_NONE, &recurse , 0, 0, 0 },
+ {"recursive-level", 'N', POPT_ARG_INT, &recurse_level, 0,...
2004 Apr 20
1
improved atime patch
...ndle sparse files efficiently\n");
rprintf(F," -n, --dry-run show what would have been transferred\n");
rprintf(F," -W, --whole-file copy whole files, no incremental checks\n");
@@ -346,6 +348,7 @@
{"group", 'g', POPT_ARG_NONE, &preserve_gid, 0, 0, 0 },
{"devices", 'D', POPT_ARG_NONE, &preserve_devices, 0, 0, 0 },
{"times", 't', POPT_ARG_NONE, &preserve_times, 0, 0, 0 },
+ {"copy-atimes", 'A', POPT_ARG_NONE, ©_...