mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-26 03:21:44 +03:00
7e73137495
For session mode, only XDG_CACHE_HOME is set, because we want to remain integrating with services in user session, but for system mode, this would have become reading/writing to '/' which carries the obvious issue with permissions (also, '/' is the wrong location in 99.9% cases anyway). Signed-off-by: Erik Skultety <eskultet@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
27 lines
672 B
Plaintext
27 lines
672 B
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/home/test \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
XDG_DATA_HOME=/tmp/lib/domain--1-kvm/.local/share \
|
|
XDG_CACHE_HOME=/tmp/lib/domain--1-kvm/.cache \
|
|
XDG_CONFIG_HOME=/tmp/lib/domain--1-kvm/.config \
|
|
QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu-system-x86_64 \
|
|
-name kvm \
|
|
-S \
|
|
-machine pc,accel=kvm,usb=off,dump-guest-core=off \
|
|
-cpu qemu32 \
|
|
-m 4096 \
|
|
-smp 1,sockets=1,cores=1,threads=1 \
|
|
-uuid d091ea82-29e6-2e34-3005-f02617b36e87 \
|
|
-display none \
|
|
-no-user-config \
|
|
-nodefaults \
|
|
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-kvm/monitor.sock,server,\
|
|
nowait \
|
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
-rtc base=utc \
|
|
-no-shutdown \
|
|
-no-acpi
|