phyllomeos/blocks/base-guest-agents.cfg

19 lines
1.1 KiB
INI
Raw Normal View History

2021-11-26 15:13:00 +00:00
# __ ____ ____ _____
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
# /_/ /____/
# What ? This kickstart file provides guest-agents, which are useful for virtual machines
2021-11-26 20:21:28 +00:00
%packages --exclude-weakdeps # Beginning of the packages section. Does not include weak dependencies.
2021-11-26 15:13:00 +00:00
qemu-guest-agent # "QEMU guest agent" The qemu-guest agent is unnecessary for a bare-metal system. However, it is included here to cover cases where this kickstart file is used to deploy a virtual machine
2021-11-26 20:21:28 +00:00
spice-vdagent # "Agent for Spice guests" The spice agent is unnecessary for a bare-metal system. However, it is included here to cover cases where this kickstart file is used to deploy a virtual machine
%end # End of the packages section
2021-11-27 13:09:02 +00:00
2021-11-27 14:29:48 +00:00
services --enabled=NetworkManager,qemu-guest-agent,spice-vdagentd,libvirtd --disabled=sshd # enable services for guest agents
2021-11-27 13:09:02 +00:00