Merge pull request #784 from pyhalov/doors-1.0

Don't try to backup doors or event ports (Solaris and derivates).
This commit is contained in:
TW 2016-03-21 16:04:35 +01:00
commit e435a5ac41
1 changed files with 6 additions and 0 deletions

View File

@ -281,6 +281,12 @@ class Archiver:
elif stat.S_ISSOCK(st.st_mode):
# Ignore unix sockets
return
elif stat.S_ISDOOR(st.st_mode):
# Ignore Solaris doors
return
elif stat.S_ISPORT(st.st_mode):
# Ignore Solaris event ports
return
else:
self.print_warning('Unknown file type: %s', path)
return