machine: replace references to "plugin" with "component"
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
92ac1ee21f
commit
e2894b9907
|
@ -68,7 +68,7 @@ class Machine:
|
||||||
return "ok"
|
return "ok"
|
||||||
|
|
||||||
async def _execute_cmd(self, cmd):
|
async def _execute_cmd(self, cmd):
|
||||||
shell_command = self.server.lookup_plugin('shell_command')
|
shell_command = self.server.lookup_component('shell_command')
|
||||||
scmd = shell_command.build_shell_command(cmd, None)
|
scmd = shell_command.build_shell_command(cmd, None)
|
||||||
try:
|
try:
|
||||||
await scmd.run(timeout=2., verbose=False)
|
await scmd.run(timeout=2., verbose=False)
|
||||||
|
@ -76,5 +76,5 @@ class Machine:
|
||||||
logging.exception(f"Error running cmd '{cmd}'")
|
logging.exception(f"Error running cmd '{cmd}'")
|
||||||
raise
|
raise
|
||||||
|
|
||||||
def load_plugin(config):
|
def load_component(config):
|
||||||
return Machine(config)
|
return Machine(config)
|
||||||
|
|
Loading…
Reference in New Issue