+

Search Tips   |   Advanced Search

ansible.builtin.dnf - Manages packages with the dnf package manager

This module is part of ansible-base and included in all Ansible installations. In most cases, you can use the short module name dnf even without specifying the collections: keyword. Despite that, we recommend you use the FQCN for easy linking to the module documentation and to avoid conflicting with other collections that may have the same module name.


Synopsis


Requirements

The below requirements are needed on the host that executes this module.


Parameters

Parameter Choices/Defaults Comments

allow_downgrade

boolean

  • no ←
  • yes

Specify if the named package and version is allowed to downgrade a maybe already installed higher version of that package. Note that setting allow_downgrade=True can make this module behave in a non-idempotent way. The task could end up with a set of packages that does not match the complete list of specified packages to install (because dependencies between the downgraded package and others can cause changes to the packages which were in the earlier transaction).

allowerasing

boolean

added in 2.10 of ansible.builtin

  • no ←
  • yes

If yes it allows erasing of installed packages to resolve dependencies.

autoremove

boolean

  • no ←
  • yes

If yes, removes all "leaf" packages from the system that were originally installed as dependencies of user-installed packages but which are no longer required by any such package. Should be used alone or when state is absent

bugfix

boolean

  • no ←
  • yes

If set to yes, and state=latest then only installs updates that have been marked bugfix related.

Note that, similar to ``dnf upgrade-minimal``, this filter applies to dependencies as well.

conf_file

string

The remote dnf configuration file to use for the transaction.

disable_excludes

string

Disable the excludes defined in DNF config files.

If set to all, disables all excludes.

If set to main, disable excludes defined in [main] in dnf.conf.

If set to repoid, disable excludes defined for given repo id.

disable_gpg_check

boolean

  • no ←
  • yes

Whether to disable the GPG checking of signatures of packages being installed. Has an effect only if state is present or latest.

This setting affects packages installed from a repository as well as "local" packages installed from the filesystem or a URL.

disable_plugin

string

Plugin name to disable for the install/update operation. The disabled plugins will not persist beyond the transaction.

disablerepo

string

Repoid of repositories to disable for the install/update operation. These repos will not persist beyond the transaction. When specifying multiple repos, separate them with a ",".

download_dir

string

Specifies an alternate directory to store packages.

Has an effect only if download_only is specified.

download_only

boolean

  • no ←
  • yes

Only download the packages, do not install them.

enable_plugin

string

Plugin name to enable for the install/update operation. The enabled plugin will not persist beyond the transaction.

enablerepo

string

Repoid of repositories to enable for the install/update operation. These repos will not persist beyond the transaction. When specifying multiple repos, separate them with a ",".

exclude

string

Package name(s) to exclude when state=present, or latest. This can be a list or a comma separated string.

install_repoquery

boolean

  • no

  • yes ←

This is effectively a no-op in DNF as it is not needed with DNF, but is an accepted parameter for feature parity/compatibility with the yum module.

install_weak_deps

boolean

  • no

  • yes ←

Will also install all packages linked by a weak dependency relation.

installroot

string

Default:

"/"

Specifies an alternative installroot, relative to which all packages will be installed.

list

string

Various (non-idempotent) commands for usage with /usr/bin/ansible and not playbooks. See examples.

lock_timeout

integer

Default:

30

Amount of time to wait for the dnf lockfile to be freed.

name

list / elements=string / required

A package name or package specifier with version, like name-1.0. When using state=latest, this can be '*' which means run: dnf -y update. You can also pass a url or a local path to a rpm file. To operate on several packages this can accept a comma separated string of packages or a list of packages.


aliases: pkg

releasever

string

Specifies an alternative release from which all packages will be installed.

security

boolean

  • no ←
  • yes

If set to yes, and state=latest then only installs updates that have been marked security related.

Note that, similar to ``dnf upgrade-minimal``, this filter applies to dependencies as well.

skip_broken

boolean

  • no ←
  • yes

Skip packages with broken dependencies(devsolve) and are causing problems.

state

string

  • absent
  • present
  • installed
  • removed
  • latest

Whether to install (present, latest), or remove (absent) a package.

Default is None, however in effect the default action is present unless the autoremove option is enabled for this module, then absent is inferred.

update_cache

boolean

  • no ←
  • yes

Force dnf to check if cache is out of date and redownload if needed. Has an effect only if state is present or latest.


aliases: expire-cache

update_only

boolean

  • no ←
  • yes

When using latest, only update installed packages. Do not install packages.

Has an effect only if state is latest

validate_certs

boolean

  • no

  • yes ←

This only applies if using a //docs.ansible.com/ansible/latest/collections/black.css url as the source of the rpm. e.g. for localinstall. If set to no, the SSL certificates will not be validated.

This should only set to no used on personally controlled sites using self-signed certificates as it avoids verifying the source site.



Notes


Examples


Authors