Displaying 9 results from an estimated 9 matches for "default_perms_for_dir".
2006 Feb 23
1
DO NOT REPLY [Bug 3543] New: [ACL] rsync calls default_perms_for_dir on omitted implied dirs before ensuring they exist
https://bugzilla.samba.org/show_bug.cgi?id=3543
Summary: [ACL] rsync calls default_perms_for_dir on omitted
implied dirs before ensuring they exist
Product: rsync
Version: 2.6.7
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@sa...
2008 Apr 28
1
DO NOT REPLY [Bug 5426] New: --existing and default_perms_for_dir for non-existing directory
https://bugzilla.samba.org/show_bug.cgi?id=5426
Summary: --existing and default_perms_for_dir for non-existing
directory
Product: rsync
Version: 2.6.9
Platform: x86
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P3
Component: core
AssignedTo: wayned@samba.org
Reporte...
2008 Apr 23
0
--existing and default_perms_for_dir for non-existing directory
hello,
I am getting the following with rsync 2.6.9:
> :~/tmp/rsync> mkdir a
> :~/tmp/rsync> mkdir a/dir
> :~/tmp/rsync> touch a/dir/file
> :~/tmp/rsync> mkdir b
> :~/tmp/rsync> rsync -r --existing a/ b
> default_perms_for_dir: sys_acl_get_file(dir, SMB_ACL_TYPE_DEFAULT): No such file or directory, falling back on umask
> rsync error: some files could not be transferred (code 23) at main.c(977) [sender=2.6.9]
Is it a bug?
Thanks a lot,
Misha
2009 Jun 21
0
Rsync stops in the middle of a large transfer
...e/Trash/files/Dropbox/Public"
failed: Input/output error (5)
*** Skipping any contents from this failed directory ***
rsync: recv_generator: mkdir "/home/thomas/.gvfs/drobo on
droboshare/Thomasm1530/home/backup.0/.local/share/Trash/files/Dropbox/Photos"
failed: Input/output error (5)
default_perms_for_dir: sys_acl_get_file(.local/share/Trash/files/Dropbox,
ACL_TYPE_DEFAULT): Input/output error, falling back on umask
*** Skipping any contents from this failed directory ***
rsync: recv_generator: mkdir "/home/thomas/.gvfs/drobo on
droboshare/Thomasm1530/home/backup.0/.local/share/Trash/files/Drop...
2020 Nov 18
0
Strange behavior after upgrading to rsync 3.2.3
...and bug reports and found nothing relevant.)
I just recently upgraded to rsync 3.2.3 Now, I get error messages
on every copy. For example,
$ rsync -rltv --delete rsync://anoncvs.netbsd.org/cvsroot/CVSROOT \
/$LOCALDIR/
results in these error messages:
receiving incremental file list
default_perms_for_dir: sys_acl_get_file(., ACL_TYPE_DEFAULT): Operation not supported, falling back on umask
default_perms_for_dir: sys_acl_get_file(CVSROOT, ACL_TYPE_DEFAULT):Operation not supported, falling back on umask
Running the same command on another directory (the actual NetBSD repo)
results in a lot more of t...
2006 Sep 22
2
incoming chmod on daemon fails on subdirectories
...rsync: recv_generator: mkdir
"/linux/documentation/perl/perl_networking/ch17" (in test) failed:
Permission denied (13)
2006/09/21 04:34:58 [6860] rsync: stat
"/linux/documentation/perl/perl_networking/ch17" (in test) failed:
Permission denied (13)
2006/09/21 04:34:58 [6860] default_perms_for_dir:
sys_acl_get_file(linux/documentation/perl/perl_networking/ch17,
SMB_ACL_TYPE_DEFAULT): Permission denied, falling back on umask
Tried this with and without
use chroot = true
but it made no difference. Tried changing the order of the chmod
directives to
incoming chmod = Fug=rw,Fo-rwx,D...
2016 Jan 13
0
[Bug 11671] New: --files-from= with nonexistant files and --delete-missing-args complains about vanished source files
...s is not the case.
Steps to reproduce:
1. Create files.txt with "foo/bar". (Make sure "foo/" doesn't exist.)
2. Run: rsync --delete-missing-args -v --files-from=files.txt . remote-host:
Output:
building file list ...
file has vanished: "/home/vegard/foo"
done
default_perms_for_dir: sys_acl_get_file(foo, ACL_TYPE_DEFAULT): No such file or
directory, falling back on umask
sent 30 bytes received 129 bytes 45.43 bytes/sec
total size is 0 speedup is 0.00
rsync warning: some files vanished before they could be transferred (code 24)
at main.c(1183) [sender=3.1.0]
Expected beha...
2006 Dec 01
1
Bug#401189: rsync: using rltvz options spews sys_acl_get_file messages
Hi,
I got the following bug report on the Debian rsync which has the ACL
patch applied:
On Fri 01 Dec 2006, Bryan Gartner wrote:
>
> When using the rltvz options to mirror files from a remote server, these
> kinds of issues are reported:
>
> default_perms_for_dir: sys_acl_get_file(wallpaper, SMB_ACL_TYPE_DEFAULT):
> Function not implemented, falling back on umask
>
> This is true for both 2.6.9-1 and 2.6.9-2 versions on this (hppa) platform,
> but doesn't seem to exist on i386 versions.
>
> A workaround is simply to use "avz...
2010 Dec 23
1
DO NOT REPLY [Bug 7884] New: Workaround for ACL problem with ZFS under FreeBSD
...requests ACL_TYPE_ACCESS, which is
invalid for files
with NFSv4 ACLs.
Patch below makes rsync properly recognize EINVAL as lack of support for the
requested ACL type.
--- acls.c.orig 2010-12-23 10:45:21.344757361 +0100
+++ acls.c 2010-12-23 10:44:33.000000000 +0100
@@ -1082,6 +1082,10 @@ int default_perms_for_dir(const char *di
case ENOTSUP:
#endif
case ENOSYS:
+#ifdef __FreeBSD__
+ /* Workaround for improper NFSv4 ACL handling in rsync. */
+ case EINVAL:
+#endif
/* No ACLs are available. */
break;...