xcat-core/xCAT-client/share/xcat/rvid/rvid.xen
2009-04-10 14:09:03 +00:00

20 lines
643 B
Bash
Executable File

#!/bin/bash
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
if [ ! -z $rvid_virturi -a ! -z $rvid_virtname ]; then
if [ -x /usr/bin/virt-viewer ]; then
exec /usr/bin/virt-viewer -c $rvid_virturi $rvid_virtname
else
echo "Installation of virt-viewer is recommended, falling back to vncviewer"
fi
fi
myport=${rvid_vncdisplay#*:}
let myport=myport-5900;
export VNC_VIA_CMD='/usr/bin/ssh -o BatchMode=yes -f -L "$L":"$H":"$R" "$G" sleep 20'
(
flock 200
vncviewer :$myport -via $rvid_server AutoSelect=0 FullColor=1 >& /dev/null &
sleep 0.2
flock -u 200
) 200> /tmp/xcat/virtvnclock