Lines Matching refs:command
41 def adjust_command(self, stage, command): argument
42 super().adjust_command(stage, command)
47 return command
52 if not isinstance(command, list):
54 cmdlist = command.split()
56 cmdlist = command
59 …nd: stage is {}; inserting netns stuff in command [{}] list [{}]'.format(stage, command, cmdlist))
68 command = ' '.join(cmdlist)
70 command = cmdlist
73 print('adjust_command: return command [{}]'.format(command))
74 return command
107 def _exec_cmd(self, stage, command): argument
112 if '$' in command:
113 command = self._replace_keywords(command)
115 self.adjust_command(stage, command)
117 print('_exec_cmd: command "{}"'.format(command))
118 proc = subprocess.Popen(command,