Skip to content

Commit

Permalink
Revert default of allow_vendor_change to true
Browse files Browse the repository at this point in the history
We discovered several issues related to the feature.

Command line packages are refused to get installed when they have
a different vendor.

Disabling copr repository results in refusing installation of packages
and upgrades from original repositories - skipping all upgrades.

Cryptic solver message
 - it is impossible to guess that the real issue is related to
 a different vendor of both packages
 - cannot install both dnf5-5.0.13-2.fc38.x86_64 and dnf5-5.1.0-20230719020203.0.gc17c4f61.fc38.x86_64
    repoquery info does not show vendor
  • Loading branch information
j-mracek committed Jul 20, 2023
1 parent bea2b76 commit ba8561e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libdnf5/conf/config_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class ConfigMain::Impl {
OptionBool gpgkey_dns_verification{false};
OptionBool obsoletes{true};
OptionBool exit_on_lock{false};
OptionBool allow_vendor_change{false};
OptionBool allow_vendor_change{true};
OptionSeconds metadata_timer_sync{60 * 60 * 3}; // 3 hours
OptionStringList disable_excludes{std::vector<std::string>{}};
OptionEnum<std::string> multilib_policy{"best", {"best", "all"}}; // :api
Expand Down

0 comments on commit ba8561e

Please sign in to comment.