Displaying 2 results from an estimated 2 matches for "rsync_flags".
Did you mean:
sync_flags
2012 Apr 05
2
[Bug 8844] New: rsyncd ownership handling
...All
Status: NEW
Severity: normal
Priority: P5
Component: core
AssignedTo: wayned at samba.org
ReportedBy: andras.porjesz at ericsson.com
QAContact: rsync-qa at samba.org
I have an rsync client running with the following flags:
RSYNC_FLAGS="--recursive" # this tells rsync to copy
directories recursively
RSYNC_FLAGS="$RSYNC_FLAGS --links" # recreate symlinks
RSYNC_FLAGS="$RSYNC_FLAGS --perms" # set the destination
permissions
RSYNC_FLAGS="$RSY...
2002 Oct 05
0
Trouble transferring referents of symlinks outside the source tree
...ave a directory that essentially is my web site, which I update when
need be. I am (trying) to use rsync to sync a remote server with my
changes whenever they are made.
I'm using a little script to do this:
#!/bin/sh
DATA_DIR=/home/munish/data/www
REMOTE_BACKUP=[snipped out user@host here]
RSYNC_FLAGS="-zapuLxSC --stats --progress --copy-unsafe-links --bwlimit=20"
echo -n "Sync'ing www..."
rsync ${RSYNC_FLAGS} ${DATA_DIR}/* ${REMOTE_BACKUP}:
echo "Done."
exit 0
Now, $DATA_DIR contains a subdirectory named freebsd/configs, which
looks like this:
munish users...