Merge pull request #10440 from rhvgoyal/skip-dot-prefix-files

devicemapper: Skip the files with prefix "." during device map construct...
This commit is contained in:
Vincent Batts 2015-02-09 10:26:27 +01:00
commit 67a4f1db10
1 changed files with 5 additions and 0 deletions

View File

@ -323,6 +323,11 @@ func (devices *DeviceSet) deviceFileWalkFunction(path string, finfo os.FileInfo)
return nil
}
if strings.HasPrefix(finfo.Name(), ".") {
log.Debugf("Skipping file %s", path)
return nil
}
if finfo.Name() == deviceSetMetaFile {
log.Debugf("Skipping file %s", path)
return nil