ansible.builtin.yum module – Manages packages with the yum package manager
Note
This module is part of ansible-core
and included in all Ansible
installations. In most cases, you can use the short
module name
yum
even without specifying the collections keyword.
However, we recommend you use the Fully Qualified Collection Name (FQCN) ansible.builtin.yum
for easy linking to the
module documentation and to avoid conflicting with other collections that may have
the same module name.
Synopsis
Installs, upgrade, downgrades, removes, and lists packages and groups with the yum package manager.
This module only works on Python 2. If you require Python 3 support see the ansible.builtin.dnf module.
Note
This module has a corresponding action plugin.
Requirements
The below requirements are needed on the host that executes this module.
yum
Parameters
Parameter |
Comments |
---|---|
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). Choices:
|
|
If NOTE: This feature requires yum >= 3.4.3 (RHEL/CentOS 7+) Choices:
|
|
If set to Choices:
|
|
Tells yum to run entirely from system cache; does not download or update metadata. Choices:
|
|
The remote yum configuration file to use for the transaction. |
|
Disable the excludes defined in YUM config files. If set to If set to If set to |
|
Whether to disable the GPG checking of signatures of packages being installed. Has an effect only if Choices:
|
|
Plugin name to disable for the install/update operation. The disabled plugins will not persist beyond the transaction. Default: |
|
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 As of Ansible 2.7, this can alternatively be a list instead of Default: |
|
Specifies an alternate directory to store packages. Has an effect only if |
|
Only download the packages, do not install them. Choices:
|
|
Plugin name to enable for the install/update operation. The enabled plugin will not persist beyond the transaction. Default: |
|
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 As of Ansible 2.7, this can alternatively be a list instead of Default: |
|
Package name(s) to exclude when state=present, or latest Default: |
|
If repoquery is not available, install yum-utils. If the system is registered to RHN or an RHN Satellite, repoquery allows for querying all channels assigned to the system. It is also required to use the ‘list’ parameter. NOTE: This will run and be logged as a separate yum transation which takes place before any other installation or removal. NOTE: This will use the system’s default enabled repositories without regard for disablerepo/enablerepo given to the module. Choices:
|
|
Will also install all packages linked by a weak dependency relation. NOTE: This feature requires yum >= 4 (RHEL/CentOS 8+) Choices:
|
|
Specifies an alternative installroot, relative to which all packages will be installed. Default: |
|
Package name to run the equivalent of This parameter is mutually exclusive with |
|
Amount of time to wait for the yum lockfile to be freed. Default: |
|
A package name or package specifier with version, like Comparison operators for package version are valid here If a previous version is specified, the task also needs to turn When using You can also pass a url or a local path to an rpm file (using Default: |
|
Specifies an alternative release from which all packages will be installed. |
|
If set to Choices:
|
|
Skip all unavailable packages or packages with broken dependencies without raising an error. Equivalent to passing the –skip-broken option. Choices:
|
|
Disables SSL validation of the repository server for this transaction. This should be set to Choices:
|
|
Whether to install (
Default is Choices:
|
|
Force yum to check if cache is out of date and redownload if needed. Has an effect only if Choices:
|
|
When using latest, only update installed packages. Do not install packages. Has an effect only if Choices:
|
|
This module supports By default, this module will select the backend based on the Choices:
|
|
This only applies if using a https url as the source of the rpm. e.g. for localinstall. If set to This should only set to Prior to 2.1 the code worked as if this was set to Choices:
|
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: partial In the case of yum, it has 2 action plugins that use it under the hood, ansible.builtin.yum and ansible.builtin.package. |
Indicates this has a corresponding action plugin so some parts of the options can be executed on the controller |
|
Support: none |
Supports being used with the |
|
Support: none |
Forces a ‘global’ task that does not execute per host, this bypasses per host templating and serial, throttle and other loop considerations Conditionals will work as if This action will not work normally outside of lockstep strategies |
|
Support: full |
Can run in check_mode and return changed status prediction without modifying target |
|
Support: full |
Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode |
|
Platform: rhel |
Target OS/families that can be operated against |
Notes
Note
When used with a
loop:
each package will be processed individually, it is much more efficient to pass the list directly to thename
option.In versions prior to 1.9.2 this module installed and removed each package given to the yum module separately. This caused problems when packages specified by filename or url had to be installed or removed together. In 1.9.2 this was fixed so that packages are installed in one yum transaction. However, if one of the packages adds a new yum repository that the other packages come from (such as epel-release) then that package needs to be installed in a separate task. This mimics yum’s command line behaviour.
Yum itself has two types of groups. “Package groups” are specified in the rpm itself while “environment groups” are specified in a separate file (usually by the distribution). Unfortunately, this division becomes apparent to ansible users because ansible needs to operate on the group of packages in a single transaction and yum requires groups to be specified in different ways when used in that way. Package groups are specified as “@development-tools” and environment groups are “@^gnome-desktop-environment”. Use the “yum group list hidden ids” command to see which category of group the group you want to install falls into.
The yum module does not support clearing yum cache in an idempotent way, so it was decided not to implement it, the only method is to use command and call the yum command directly, namely “command: yum clean all” https://github.com/ansible/ansible/pull/31450#issuecomment-352889579
Examples
- name: Install the latest version of Apache
ansible.builtin.yum:
name: httpd
state: latest
- name: Install Apache >= 2.4
ansible.builtin.yum:
name: httpd>=2.4
state: present
- name: Install a list of packages (suitable replacement for 2.11 loop deprecation warning)
ansible.builtin.yum:
name:
- nginx
- postgresql
- postgresql-server
state: present
- name: Install a list of packages with a list variable
ansible.builtin.yum:
name: "{{ packages }}"
vars:
packages:
- httpd
- httpd-tools
- name: Remove the Apache package
ansible.builtin.yum:
name: httpd
state: absent
- name: Install the latest version of Apache from the testing repo
ansible.builtin.yum:
name: httpd
enablerepo: testing
state: present
- name: Install one specific version of Apache
ansible.builtin.yum:
name: httpd-2.2.29-1.4.amzn1
state: present
- name: Upgrade all packages
ansible.builtin.yum:
name: '*'
state: latest
- name: Upgrade all packages, excluding kernel & foo related packages
ansible.builtin.yum:
name: '*'
state: latest
exclude: kernel*,foo*
- name: Install the nginx rpm from a remote repo
ansible.builtin.yum:
name: http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
state: present
- name: Install nginx rpm from a local file
ansible.builtin.yum:
name: /usr/local/src/nginx-release-centos-6-0.el6.ngx.noarch.rpm
state: present
- name: Install the 'Development tools' package group
ansible.builtin.yum:
name: "@Development tools"
state: present
- name: Install the 'Gnome desktop' environment group
ansible.builtin.yum:
name: "@^gnome-desktop-environment"
state: present
- name: List ansible packages and register result to print with debug later
ansible.builtin.yum:
list: ansible
register: result
- name: Install package with multiple repos enabled
ansible.builtin.yum:
name: sos
enablerepo: "epel,ol7_latest"
- name: Install package with multiple repos disabled
ansible.builtin.yum:
name: sos
disablerepo: "epel,ol7_latest"
- name: Download the nginx package but do not install it
ansible.builtin.yum:
name:
- nginx
state: latest
download_only: true