2783450a92
Rename the library module and CLI wrapper. Rename daemon/graphdriver to drivers. Catch up vendoring to match modules we've pruned. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
30 lines
595 B
Go
30 lines
595 B
Go
package archive
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/containers/storage/pkg/system"
|
|
)
|
|
|
|
func statDifferent(oldStat *system.StatT, newStat *system.StatT) bool {
|
|
|
|
// Don't look at size for dirs, its not a good measure of change
|
|
if oldStat.ModTime() != newStat.ModTime() ||
|
|
oldStat.Mode() != newStat.Mode() ||
|
|
oldStat.Size() != newStat.Size() && !oldStat.IsDir() {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (info *FileInfo) isDir() bool {
|
|
return info.parent == nil || info.stat.IsDir()
|
|
}
|
|
|
|
func getIno(fi os.FileInfo) (inode uint64) {
|
|
return
|
|
}
|
|
|
|
func hasHardlinks(fi os.FileInfo) bool {
|
|
return false
|
|
}
|