From: Alexander Wirt Date: Sun, 7 Nov 2010 19:10:04 +0000 (+0100) Subject: Add support for vnc_connect feature (#877) X-Git-Tag: v0.9.16~2 X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=863744b19ebd06192addb6287c47cec4f5f94b2d Add support for vnc_connect feature (#877) --- 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 } # }}}