You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is arising from the use of shutil.copy2() to copy the log file. This is trying to copy particular SELinux attributes, which apparently the system takes issue with. In particular, the origin of the above boils down to this call which is made by copy2():
I don't think the use of copy2() here is actually buying us anything: the metadata is of no obvious value. Any objections to simply turning this into a copy() instead?
The text was updated successfully, but these errors were encountered:
I'm trying to use
eups distrib
on a system which is running SELinux (for reasons outside my control).My
eups distrib install
commands always fail with an error like:This is arising from the use of
shutil.copy2()
to copy the log file. This is trying to copy particular SELinux attributes, which apparently the system takes issue with. In particular, the origin of the above boils down to this call which is made bycopy2()
:I don't think the use of
copy2()
here is actually buying us anything: the metadata is of no obvious value. Any objections to simply turning this into acopy()
instead?The text was updated successfully, but these errors were encountered: