Skip to content

Commit f11ea1a

Browse files
committed
main: switch to librepo by default
When building the anaconda-iso from centos or fedora there is a high chance to hit a bad mirror. The libcurl method is not able to fallback to different mirrors so the user experience is bad. Switch to librepo by default therefore. Closes: #835
1 parent 84bbc0e commit f11ea1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bib/cmd/bootc-image-builder/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ func buildCobraCmdline() (*cobra.Command, error) {
656656
return nil, fmt.Errorf("cannot hide 'local' :%w", err)
657657
}
658658
manifestCmd.Flags().String("rootfs", "", "Root filesystem type. If not given, the default configured in the source container image is used.")
659-
manifestCmd.Flags().Bool("use-librepo", false, "(experimenal) switch to librepo for pkg download, needs new enough osbuild")
659+
manifestCmd.Flags().Bool("use-librepo", true, "switch to librepo for pkg download, needs new enough osbuild")
660660
// --config is only useful for developers who run bib outside
661661
// of a container to generate a manifest. so hide it by
662662
// default from users.

0 commit comments

Comments
 (0)