Update osbuild/images to v0.41.0
Multiple blueprint fixes: - Extend the blueprint service customizations to accept services to be masked. - The `storage-path` and `container-transport` fields were removed in imagees 41.0 in order to simplify the way local storage containers are handled.
This commit is contained in:
parent
4e504f7905
commit
f6b76cce31
50 changed files with 615 additions and 529 deletions
4
vendor/github.com/osbuild/images/internal/common/distro.go
generated
vendored
4
vendor/github.com/osbuild/images/internal/common/distro.go
generated
vendored
|
|
@ -26,3 +26,7 @@ func VersionLessThan(a, b string) bool {
|
|||
|
||||
return aV.LessThan(bV)
|
||||
}
|
||||
|
||||
func VersionGreaterThanOrEqual(a, b string) bool {
|
||||
return !VersionLessThan(a, b)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue