This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sstirlin
Recipients sstirlin
Date 2015-05-11.02:25:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1431311142.46.0.816679575818.issue24163@psf.upfronthosting.co.za>
In-reply-to
Content
Using shutil.copytree to copy a directory tree.  The source dir lives on a Windows 7 host, however is being accessed from inside a VirtualBox VM as a "shared folder" (using vagrant to manage this whole thing).

The destination directory is just a regular linux directory inside the VM.  The guest OS is CentOS 5.

shutil.copystat dies on this copy.  I have tracked the problem down to line 154 in shutil.py:

os.setxattr(dst, name, value, follow_symlinks=follow_symlinks)

The issue is that the src directory apparently defines the attribute security.selinux, however setxattr doesn't see this attribute in the destination and throws an exception.
History
Date User Action Args
2015-05-11 02:25:42sstirlinsetrecipients: + sstirlin
2015-05-11 02:25:42sstirlinsetmessageid: <1431311142.46.0.816679575818.issue24163@psf.upfronthosting.co.za>
2015-05-11 02:25:42sstirlinlinkissue24163 messages
2015-05-11 02:25:41sstirlincreate