Skip to content

Commit

Permalink
shared/simplestreams/products: Fix regression in lxd_combined.tar.gz …
Browse files Browse the repository at this point in the history
…handling

For reasons that are likely lost to history simplestreams uses lxd.tar.gz
whereas the combined file is lxd_combined.tar.gz (not xz).

Signed-off-by: Thomas Parrott <thomas.parrott@canonical.com>
  • Loading branch information
tomponline committed Sep 21, 2023
1 parent 79e4136 commit 3650d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/simplestreams/products.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/canonical/lxd/shared/osarch"
)

var lxdCompatCombinedItems = []string{"lxd_combined.tar.xz", "incus_combined.tar.xz"}
var lxdCompatCombinedItems = []string{"lxd_combined.tar.gz", "incus_combined.tar.gz"}
var lxdCompatItems = []string{"lxd.tar.xz", "incus.tar.xz"}

// Products represents the base of download.json.
Expand Down

0 comments on commit 3650d76

Please sign in to comment.