machine: replace references to "plugin" with "component"

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Arksine 2021-03-18 08:20:53 -04:00
parent 92ac1ee21f
commit e2894b9907
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class Machine:
return "ok"
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)
try:
await scmd.run(timeout=2., verbose=False)
@ -76,5 +76,5 @@ class Machine:
logging.exception(f"Error running cmd '{cmd}'")
raise
def load_plugin(config):
def load_component(config):
return Machine(config)