Skip to content

Commit

Permalink
Disable deltarpm by default
Browse files Browse the repository at this point in the history
In comparison to modification in dnf.conf, the change in code
will be propagated to systems with modified dnf.conf.

Related: https://bugzilla.redhat.com/show_bug.cgi?id=2252128
Related: https://fedoraproject.org/wiki/Changes/Drop_Delta_RPMs
  • Loading branch information
j-mracek authored and jan-kolarik committed Feb 1, 2024
1 parent 24c2a04 commit 142405d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libdnf/conf/ConfigMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ class ConfigMain::Impl {
OptionBool proxy_sslverify{true};
OptionString proxy_sslclientcert{""};
OptionString proxy_sslclientkey{""};
OptionBool deltarpm{true};
OptionBool deltarpm{false};
OptionNumber<std::uint32_t> deltarpm_percentage{75};
OptionBool skip_if_unavailable{false};
OptionBool sslverifystatus{false};
Expand Down

0 comments on commit 142405d

Please sign in to comment.