From: Wayne Davison Date: Tue, 21 Jan 2003 20:19:53 +0000 (+0000) Subject: Chown the $TO and $FROM directories to $RSYNCD_UID:$RSYNCD_GID (if we X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/660cb6a08567b62abe815e5896c0275ee3c00fb4 Chown the $TO and $FROM directories to $RSYNCD_UID:$RSYNCD_GID (if we can, and don't fail if we can't). --- diff --git a/testsuite/daemon-gzip-upload.test b/testsuite/daemon-gzip-upload.test index 04642ac8..49ddba99 100644 --- a/testsuite/daemon-gzip-upload.test +++ b/testsuite/daemon-gzip-upload.test @@ -21,5 +21,12 @@ RSYNC_CONNECT_PROG="$RSYNC --config=$conf --daemon" export RSYNC_CONNECT_PROG hands_setup + +# If we are root, we must allow the rsyncd process (which runs under +# a different uid/gid) to write to the destination directory. Source +# directory must be chown'ed as well so that UIDs & GIDs match when +# the source & destination are compared after copying. +chown -R $RSYNCD_UID:$RSYNCD_GID "$FROM" "$TO" 2>/dev/null || true + checkit "$RSYNC -avvz \"$FROM/\" localhost::test-to/" "$FROM" "$TO"