feat: Add option to disable VNC

This commit is contained in:
Kroese 2024-03-11 11:28:31 +01:00 committed by GitHub
parent c469e1a918
commit 693966a037
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,6 +22,9 @@ case "${DISPLAY,,}" in
ramfb)
DISPLAY_OPTS="-display vnc=:0,websocket=5700 -device ramfb"
;;
disabled)
DISPLAY_OPTS="-display none -device $VGA"
;;
none)
DISPLAY_OPTS="-display none"
;;