2
0

initial commits

This commit is contained in:
2024-06-04 15:30:47 +02:00
parent 82964cac84
commit 9730b244da
3 changed files with 52 additions and 0 deletions

27
Update/upd-apt.yaml Normal file
View File

@@ -0,0 +1,27 @@
---
- name: Update and upgrade apt packages
hosts: all
tasks:
- name: Update packages with apt
when: ansible_pkg_mgr == 'apt'
ansible.builtin.apt:
update_cache: true
- name: Update packages with yum
when: ansible_pkg_mgr == 'yum'
ansible.builtin.yum:
name: '*'
state: latest # noqa: package-latest
- name: Upgrade packages with apt
when: ansible_pkg_mgr == 'apt'
ansible.builtin.apt:
upgrade: dist
- name: Upgrade packages with yum
when: ansible_pkg_mgr == 'yum'
ansible.builtin.yum:
name: '*'
state: latest # noqa: package-latest
exclude: kernel*