Merge pull request #92 from gabegon8910/main

2 new ansible scripts
This commit is contained in:
Christian Lempa 2023-09-12 11:09:09 +02:00 committed by GitHub
commit cdbd9d60a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,10 @@
---
- name: Install qemu-guest-agent package
hosts: all
become: true
become_method: sudo
tasks:
- name: Install qemu-guest-agent
apt:
name: qemu-guest-agent
state: present

View File

@ -0,0 +1,26 @@
---
- name: Update and upgrade apt packages
hosts: all
tasks:
- name: Update packages with apt
when: ansible_pkg_mgr == 'apt'
apt:
update_cache: yes
- name: Update packages with yum
when: ansible_pkg_mgr == 'yum'
yum:
name: '*'
state: latest
- name: Upgrade packages with apt
when: ansible_pkg_mgr == 'apt'
apt:
upgrade: dist
- name: Upgrade packages with yum
when: ansible_pkg_mgr == 'yum'
yum:
name: '*'
state: latest
exclude: kernel*