Displaying 3 results from an estimated 3 matches for "buczek".
Did you mean:
boczek
2018 Aug 03
0
BUG: --link-dest may follow symlinks and failure to hard link a non-regular file is fatal
...nt/test
mkdir src
ln -s /tmp/rsync_bug/mnt src/dir
rsync -aHx --delete --numeric-ids src/ dst1
rm src/dir
mkdir src/dir
cp -a mnt/test src/dir/
rsync -aHx --delete --numeric-ids --link-dest /tmp/rsync_bug/dst1 src/ dst2 || echo RSYNC FAIL
Output for me:
buczek at theinternet:~$ sudo ./rsync-bug.sh
+ '[' -d /tmp/rsync_bug ']'
+ umount /tmp/rsync_bug/mnt
+ rm -rf /tmp/rsync_bug
+ mkdir /tmp/rsync_bug
+ cd /tmp/rsync_bug
+ mkdir mnt
+ mount -t tmpfs tmpfs mnt
+ ln -s BLABLA mnt/test
+ mkdir src...
2024 May 24
1
sshd -i always exiting with exit status 255
...)) != sizeof(buf)) {
if (errno == EPIPE)
cleanup_exit(255);
fatal_f("read: %s", strerror(errno));
}
Questions:
- Is this the expected exit point of `sshd -i` ?
- If so, is there a reason to return a failure exit status?
Thanks!
Donald
--
Donald Buczek
buczek at molgen.mpg.de
Tel: +49 30 8413 1433
2018 Aug 13
0
[Bug 13569] New: --link-dest may follow symlinks and failure to hard link a non-regular file is fatal
...link a non-regular file is fatal
Product: rsync
Version: 3.1.3
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P5
Component: core
Assignee: wayned at samba.org
Reporter: buczek+samba-bugzilla at molgen.mpg.de
QA Contact: rsync-qa at samba.org
Created attachment 14406
--> https://bugzilla.samba.org/attachment.cgi?id=14406&action=edit
script to demonstrate bug
With --link-dest the search for a candidate to link from, follows symlinks in
directory path com...