Changed cmdPrint to cmd.

This commit is contained in:
Bob Lantz
2010-03-03 13:51:58 -08:00
parent a681f9b645
commit 04fa18dc61
+1 -1
View File
@@ -19,7 +19,7 @@ def makeXterm( node, title ):
title += ' (root)'
cmd = [ 'xterm', '-title', title, '-e' ]
if not node.execed:
node.cmdPrint( 'screen -dmS ' + node.name )
node.cmd( 'screen -dmS ' + node.name )
cmd += [ 'screen', '-D', '-RR', '-S', node.name ]
else:
cmd += [ 'sh', '-c', 'exec tail -f /tmp/' + node.name + '*.log' ]