Râu Cao 315cd247e5
Enable qemu-guest-agent after install
This is actually automatically done for the service from the apt
package, but I like specifying it explicitly as well.
2022-10-12 15:55:08 +02:00

11 lines
137 B
Ruby

#
# Cookbook:: kosmos_kvm
# Recipe:: guest
#
package %w(qemu-guest-agent)
service "qemu-guest-agent" do
action [:enable, :start]
end