From 863744b19ebd06192addb6287c47cec4f5f94b2d Mon Sep 17 00:00:00 2001 From: Alexander Wirt Date: Sun, 7 Nov 2010 20:10:04 +0100 Subject: [PATCH] Add support for vnc_connect feature (#877) --- autoconfig.functions | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/autoconfig.functions b/autoconfig.functions index a28b1f5..07e0980 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -1540,6 +1540,15 @@ if checkbootparam 'vnc' ; then /bin/chown -R "$USER": "$VNCDIR" fi fi + if checkbootparam 'vnc_connect' ; then + VNC_CONNECT='' + VNC_CONNECT="$(getbootparam 'vnc_connect' 2>>$DEBUG)" + einfo "Bootoption vnc_connect found, will start vnc with connect to $VNC_CONNECT." + #store the options in a file + VNCDIR="/home/${USER}/.vnc" + [ -d "$VNCDIR" ] || mkdir "$VNCDIR" + echo " --connect $VNC_CONNECT " >> $VNCDIR/options + fi fi } # }}} -- 2.1.4