Merge pull request #21872 from Microsoft/sjw/nanoserver-fix

Fixing nanoserver image load bug.
This commit is contained in:
John Howard 2016-04-07 21:24:32 -07:00
commit d5ef62f489
2 changed files with 4 additions and 2 deletions

View File

@ -401,7 +401,9 @@ func restoreCustomImage(is image.Store, ls layer.Store, rs reference.Store) erro
id, err := is.Create(config)
if err != nil {
return err
logrus.Warnf("Failed to restore custom image %s with error: %s.", name, err.Error)
logrus.Warnf("Skipping image %s...", name)
continue
}
if err := rs.AddTag(ref, id, true); err != nil {

View File

@ -454,7 +454,7 @@ func (d *Driver) GetCustomImageInfos() ([]CustomImageInfo, error) {
imageData.ID = id
// For now, hard code that all base images except nanoserver depend on win32k support
if imageData.Name != "nanoserver" {
if imageData.Name != "NanoServer" {
imageData.OSFeatures = append(imageData.OSFeatures, "win32k")
}