Added a ansible scripts to install qemu-agent and a script to update linux based on package manager apt or yum

This commit is contained in:
Gabe 2023-07-13 09:45:28 -04:00
parent 85a1bc92fc
commit 3d93d27b28
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*