2021-12-14 10:26:42 +00:00
|
|
|
---
|
|
|
|
- name: Prepare
|
|
|
|
hosts: all
|
|
|
|
tasks:
|
2022-01-14 08:54:26 +00:00
|
|
|
- name: Disable beta repos
|
2022-02-24 14:00:10 +00:00
|
|
|
ansible.builtin.command: yum config-manager --disable '*beta*'
|
2022-01-14 09:29:48 +00:00
|
|
|
ignore_errors: yes
|
|
|
|
|
2021-12-14 10:26:42 +00:00
|
|
|
- name: Install sudo
|
2022-02-24 14:00:10 +00:00
|
|
|
ansible.builtin.yum:
|
2021-12-14 10:26:42 +00:00
|
|
|
name: sudo
|
2022-01-14 08:54:26 +00:00
|
|
|
state: present
|