Displaying 1 result from an estimated 1 matches for "uncorect".
Did you mean:
incorect
2002 Apr 02
2
rsync 2.3.2 with --copy-unsafe-links work badly
...src/unsafe/unsafefile
ln -s ../files/file1 src/safe/links/
ln -s ../files/file2 src/safe/links/
ln -s ../../unsafe/unsafefile src/safe/links/
#next rsync copy correctly
echo "rsync with relative path";
rsync -a --copy-unsafe-links src/safe/ dest
test_copy;
rm -rf dest
#next rsync copy uncorectly - links are copied as files not as links
echo "rsync with relative2 path";
(cd src; rsync -a --copy-unsafe-links safe/ ../dest)
test_copy;
rm -rf dest
#next rsync copy uncorectly - all links are copied
echo "rsync with absolute path";
rsync -a --copy-unsafe-links `pwd`/src/sa...