Lines Matching refs:command
45 def adjust_command(self, stage, command): argument
46 super().adjust_command(stage, command)
51 return command
56 if not isinstance(command, list):
58 cmdlist = command.split()
60 cmdlist = command
63 …nd: stage is {}; inserting netns stuff in command [{}] list [{}]'.format(stage, command, cmdlist))
72 command = ' '.join(cmdlist)
74 command = cmdlist
77 print('adjust_command: return command [{}]'.format(command))
78 return command
121 def _exec_cmd(self, stage, command): argument
126 if '$' in command:
127 command = self._replace_keywords(command)
129 self.adjust_command(stage, command)
131 print('_exec_cmd: command "{}"'.format(command))
132 proc = subprocess.Popen(command,