-Enable virt-viewer usage for KVM guests
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3168 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
c7eef76b48
commit
7b67891f42
@ -1,5 +1,12 @@
|
||||
#!/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'
|
||||
|
@ -335,6 +335,7 @@ sub getrvidparms {
|
||||
"server: $1",
|
||||
"vncdisplay: $2:$3",
|
||||
"virturi: ".$hypconn->get_uri(),
|
||||
"virtname: $node",
|
||||
);
|
||||
return 0,@output;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user