mirror of
https://github.com/Ownercz/ssme-thesis.git
synced 2024-12-02 06:23:21 +01:00
10 lines
250 B
YAML
10 lines
250 B
YAML
---
|
|
- name: install yum security plugin on RHEL 7.X
|
|
# when: ansible_os_family == "CentOS"
|
|
yum: pkg=yum-plugin-security state=latest
|
|
- name: Lets upgrade all packages to the latest version.
|
|
yum:
|
|
name: '*'
|
|
state: latest
|
|
|