e5b88427dd
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@236 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
13 lines
246 B
Bash
Executable File
13 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
#A placeholder wcons, a fuller port from 1.3 is needed
|
|
if [ -z "$DISPLAY" ]; then
|
|
echo '$DISPLAY not set'
|
|
exit 1
|
|
fi
|
|
NODES=`nodels $1`
|
|
MYDIR=`dirname $0`
|
|
for n in $NODES
|
|
do
|
|
xterm -rv -name wcons -T $n -n $n -e $MYDIR/rcons $n &
|
|
done
|