search for: schertler

Displaying 4 results from an estimated 4 matches for "schertler".

Did you mean: scheduler
2002 Jul 31
1
rsync: omit summary with a single -v
...two -v flags should only be used if +transferred\&. Two -v flags will also give you information on what +files are being skipped and a summary at the end\&. More than two +-v flags should only be used if you are debugging rsync\&. .IP .IP "\fB-q, --quiet\fP" -- Roderick Schertler roderick@argon.org
2005 Jul 26
1
itemize() needs to use CHMOD_BITS (patch)
...mode != st->st_mode) + if (preserve_perms && (st->st_mode & CHMOD_BITS) + != (file->mode & CHMOD_BITS)) iflags |= ITEM_REPORT_PERMS; if (preserve_uid && am_root && file->uid != st->st_uid) iflags |= ITEM_REPORT_OWNER; -- Roderick Schertler roderick@argon.org
2003 Feb 08
1
compare st_mode & 07777, or Aix dirs always differ
...+#endif +#ifndef S_IROTH +#define S_IROTH 00004 +#endif +#ifndef S_IWOTH +#define S_IWOTH 00002 +#endif +#ifndef S_IXOTH +#define S_IXOTH 00001 #endif + +#define CHMOD_BITS (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO) #ifndef _S_IFMT #define _S_IFMT 0170000 -- Roderick Schertler roderick@argon.org
2003 Feb 19
0
FW: compare st_mode & 07777, or Aix dirs always differ
>jw schultz [mailto:jw@pegasys.ws] wrote: >On Fri, Feb 07, 2003 at 11:15:57AM -0500, Roderick Schertler wrote: >> Under Aix directories have the mode 024xxxx instead of the customary >> 04xxxx. Because of this when you sync a directory to or from an Aix >> system it's never up to date. >> >> Here is a patch which fixes this. It causes rsync to look at only the &gt...