We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
yum.packages
dnf.packages
1 parent de8d4f3 commit e0fc224Copy full SHA for e0fc224
pyinfra/operations/dnf.py
@@ -188,6 +188,7 @@ def packages(
188
uninstall_command=' '.join(uninstall_command),
189
upgrade_command='dnf update -y',
190
version_join='=',
191
+ lower=False, # dnf packages are case sensitive
192
latest=latest,
193
expand_package_fact=host.fact.rpm_package_provides,
194
)
pyinfra/operations/yum.py
upgrade_command='yum update -y',
+ lower=False, # yum packages are case sensitive
0 commit comments