Add KVM Guest role

Only installs qemu-guest-agent for now, for improving live VM backups.
This commit is contained in:
Basti 2022-05-23 12:41:55 +02:00
parent 6a85c2d5c6
commit a0b64a709d
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72
2 changed files with 15 additions and 0 deletions

5
roles/kvm_guest.rb Normal file
View File

@ -0,0 +1,5 @@
name "kvm_guest"
run_list %w(
kosmos_kvm::guest
)

View File

@ -0,0 +1,10 @@
#
# Cookbook:: kosmos_kvm
# Recipe:: guest
#
package %w(qemu-guest-agent)
service "qemu-guest-agent" do
action [:start]
end