Remove unneeded '-' in '-n', which was causing error message.

This commit is contained in:
Bob Lantz
2010-03-30 16:09:43 -07:00
parent 06b8210ea1
commit b14b1ee441
+1 -1
View File
@@ -69,7 +69,7 @@ class Node( object ):
opts = '-cdp'
self.inNamespace = inNamespace
if self.inNamespace:
opts += '-n'
opts += 'n'
cmd = [ 'mnexec', opts, 'bash', '-m' ]
self.shell = Popen( cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT,
close_fds=False )