2023-02-18 09:22:41 +03:00
|
|
|
---
|
|
|
|
- name: update repo
|
|
|
|
shell: yum check-update
|
2023-12-24 18:41:59 +03:00
|
|
|
register: update_exists
|
|
|
|
failed_when: update_exists.rc != 100 and update_exists.rc != 0
|
2023-02-18 09:22:41 +03:00
|
|
|
args:
|
|
|
|
warn: false
|
|
|
|
|
|
|
|
- name: install or update apps
|
|
|
|
shell:
|
|
|
|
cmd: "yum install -y wget curl python3"
|
|
|
|
args:
|
|
|
|
warn: false
|