mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f3616fb1c
Add forks for changes which only make logrus change without functional change. Signed-off-by: Derek McGowan <derek@mcgstyle.net>
22 lines
661 B
Go
22 lines
661 B
Go
package hcsshim
|
|
|
|
import "github.com/sirupsen/logrus"
|
|
|
|
// GetSharedBaseImages will enumerate the images stored in the common central
|
|
// image store and return descriptive info about those images for the purpose
|
|
// of registering them with the graphdriver, graph, and tagstore.
|
|
func GetSharedBaseImages() (imageData string, err error) {
|
|
title := "hcsshim::GetSharedBaseImages "
|
|
|
|
logrus.Debugf("Calling proc")
|
|
var buffer *uint16
|
|
err = getBaseImages(&buffer)
|
|
if err != nil {
|
|
err = makeError(err, title, "")
|
|
logrus.Error(err)
|
|
return
|
|
}
|
|
imageData = convertAndFreeCoTaskMemString(buffer)
|
|
logrus.Debugf(title+" - succeeded output=%s", imageData)
|
|
return
|
|
}
|