Skip to content

Commit

Permalink
Populate names on initconfig profiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
dplepage-dd committed Dec 14, 2024
1 parent 8319406 commit 10478b5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ func loadInitConfigProfiles(rawInitConfigProfiles ProfileConfigMap) (ProfileConf
log.Warnf("unable to load profile %q: %s", name, err)
continue
}
if profDefinition.Name == "" {
profDefinition.Name = name
}
profConfig.Definition = *profDefinition
}
initConfigProfiles[name] = profConfig
Expand Down

0 comments on commit 10478b5

Please sign in to comment.