Ansible Module yum: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 87: | Line 87: | ||
name: sos | name: sos | ||
disablerepo: "epel,ol7_latest" | disablerepo: "epel,ol7_latest" | ||
- name: Download the nginx package but do not install it | - name: Download the nginx package but do not install it |
Revision as of 03:18, 13 April 2021
External
Internal
Overview
Examples
Install a single package:
- name: install the latest version of Apache
yum:
name: httpd
state: latest
Install a list of packages. For that, declare a variable containing the list of packages, and use the variable name in the "name:" configuration element. ⚠️ When used with a loop: each package will be processed individually, it is much more efficient to pass the list directly to the name option.
- name: ensure a list of packages installed
vars:
packages:
- httpd
- httpd-tools
yum:
name: "{{ packages }}"
Other examples:
- name: remove the Apache package
yum:
name: httpd
state: absent
- name: install the latest version of Apache from the testing repo
yum:
name: httpd
enablerepo: testing
state: present
- name: install one specific version of Apache
yum:
name: httpd-2.2.29-1.4.amzn1
state: present
- name: upgrade all packages
yum:
name: '*'
state: latest
- name: upgrade all packages, excluding kernel & foo related packages
yum:
name: '*'
state: latest
exclude: kernel*,foo*
- name: install the nginx rpm from a remote repo
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
yum:
name: /usr/local/src/nginx-release-centos-6-0.el6.ngx.noarch.rpm
state: present
- name: install the 'Development tools' package group
yum:
name: "@Development tools"
state: present
- name: install the 'Gnome desktop' environment group
yum:
name: "@^gnome-desktop-environment"
state: present
- name: List ansible packages and register result to print with debug later.
yum:
list: ansible
register: result
- name: Install package with multiple repos enabled
yum:
name: sos
enablerepo: "epel,ol7_latest"
- name: Install package with multiple repos disabled
yum:
name: sos
disablerepo: "epel,ol7_latest"
- name: Download the nginx package but do not install it
yum:
name:
- nginx
state: latest
download_only: true