1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# Customizations for the libvirtd.service systemd unit
# Default behaviour is for libvirtd.service to start on boot
# so that VM autostart can be performed. We then want it to
# shutdown again if nothing was started and rely on systemd
# socket activation to start it again when some client app
# connects.
#LIBVIRTD_ARGS="--timeout 120"
# If systemd socket activation is in use (this is the default),
# then TCP/TLS connectivity should be turned on by enabling the
# libvirtd-{tcp,tls}.socket units. If that's not the case (e.g.
# when using sysvinit), this line can be uncommented instead.
#LIBVIRTD_ARGS="--listen"
# Override the QEMU/SDL default audio driver probing when
# starting virtual machines using SDL graphics
#
# NB these have no effect for VMs using VNC, unless vnc_allow_host_audio
# is enabled in /etc/libvirt/qemu.conf
#QEMU_AUDIO_DRV=sdl
#
#SDL_AUDIODRIVER=pulse
#############################################################
### The following settings are IGNORED when using systemd ###
#############################################################
# This option can be used to prevent libvirtd from starting at boot
# even when the corresponding sysv service is enabled; a much better
# solution is to disable the service instead
#start_libvirtd=no
# Whether to mount a systemd like cgroup layout
#mount_cgroups=yes
# Which cgroups to mount
#cgroups="memory devices"
|