Running QEMU as root is a pretty bad idea, so try to make the
user aware of that as part of the configure summary.
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
])
AC_DEFUN([LIBVIRT_RESULT_QEMU_PRIVILEGES], [
- LIBVIRT_RESULT([QEMU], [$QEMU_USER:$QEMU_GROUP])
+ if test "$QEMU_USER" = "root"; then
+ LIBVIRT_RESULT([QEMU], [$QEMU_USER:$QEMU_GROUP],
+ [!!! running QEMU as root is strongly discouraged !!!])
+ else
+ LIBVIRT_RESULT([QEMU], [$QEMU_USER:$QEMU_GROUP])
+ fi
])