writemsg_stdout("--- !md5 %s %s\n" % ("obj", obj))
continue
try:
- if statobj.st_nlink > 1:
- portage.writemsg("There are "+str(st.st_nlink-1)+ \
- " hardlinks to '%s'\n" % obj)
- # Always blind chmod 0 before unlinking to avoid race conditions.
- os.chmod(obj, 0000)
+ if statobj.st_mode & S_ISUID or statobj.st_mode & S_ISGID:
+ # Always blind chmod 0 before unlinking to avoid race conditions.
+ os.chmod(obj, 0000)
+ if statobj.st_nlink > 1:
+ portage.writemsg("setXid: "+str(st.st_nlink-1)+ \
+ " hardlinks to '%s'\n" % obj)
os.unlink(obj)
except (OSError, IOError), e:
pass