Commit 7ccca441 authored by Kris's avatar Kris

Fix nil-map panic in AppArmor skip

parent 3d050809
...@@ -35,7 +35,7 @@ type AppArmorUpgradeTest struct { ...@@ -35,7 +35,7 @@ type AppArmorUpgradeTest struct {
func (AppArmorUpgradeTest) Name() string { return "apparmor-upgrade" } func (AppArmorUpgradeTest) Name() string { return "apparmor-upgrade" }
func (AppArmorUpgradeTest) Skip(upgCtx UpgradeContext) bool { func (AppArmorUpgradeTest) Skip(upgCtx UpgradeContext) bool {
var supportedImages map[string]bool supportedImages := make(map[string]bool)
for _, d := range common.AppArmorDistros { for _, d := range common.AppArmorDistros {
supportedImages[d] = true supportedImages[d] = true
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment