Skip to content
Snippets Groups Projects
Commit 3da2b148 authored by Bob Lantz's avatar Bob Lantz
Browse files

Place 'root namespace' in xterm title to make it clearer that

the node is running in the root namespace.
parent d8ef79df
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ def makeXterm( node, title ):
node.cmdPrint( 'screen -dmS ' + node.name )
title += ': ' + node.name
if not node.inNamespace:
title += ' (root ns)'
title += ' (root namespace)'
cmd = [ 'xterm', '-title', title ]
cmd += [ '-e', 'screen', '-D', '-RR', '-S', node.name ]
return Popen( cmd )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment