Merge pull request 'qemu-guest-agent für proxmox VMs' (!54) from alex/netz39-infra-ansible:qemu-guest-agent into master
Reviewed-on: https://gitea.n39.eu/Netz39_Admin/netz39-infra-ansible/pulls/54 Reviewed-by: tux <tux@netz39.de>
This commit is contained in:
commit
1c194f9685
3 changed files with 21 additions and 0 deletions
|
@ -89,3 +89,12 @@ all:
|
|||
3765613264626637660a343562363166313535613964336261356530353732333965313830653865
|
||||
39373837643837663630333765306463616234363535613666333862396632643961
|
||||
oganesson.n39.eu:
|
||||
|
||||
children:
|
||||
proxmox:
|
||||
hosts:
|
||||
pottwal.n39.eu:
|
||||
unicorn.n39.eu:
|
||||
radon.n39.eu:
|
||||
krypton.n39.eu:
|
||||
oganesson.n39.eu:
|
||||
|
|
3
main.yml
3
main.yml
|
@ -35,6 +35,9 @@
|
|||
include_role:
|
||||
name: users
|
||||
|
||||
- name: Specific setup for all proxmox hosts
|
||||
import_playbook: proxmox.yml
|
||||
|
||||
- name: Tau specific setup
|
||||
import_playbook: tau.yml
|
||||
|
||||
|
|
9
proxmox.yml
Normal file
9
proxmox.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
- hosts: proxmox
|
||||
become: true
|
||||
|
||||
tasks:
|
||||
- name: Ensure qemu guest agent is installed on proxmox VMs
|
||||
ansible.builtin.apt:
|
||||
pkg: qemu-guest-agent
|
||||
state: present
|
Loading…
Reference in a new issue