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

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

parent 06b8210e
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ def __init__( self, name, inNamespace=True,
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 )
......
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