mirror of
https://gitlab.com/fabinfra/fabaccess/fabfire_adapter.git
synced 2025-03-12 14:51:50 +01:00
7 lines
196 B
Python
7 lines
196 B
Python
|
import fabapi
|
||
|
|
||
|
boot = fabapi.connect("localhost:59661", "Testuser", "secret")
|
||
|
ms = boot.machineSystem().wait().machineSystem
|
||
|
info = ms.info().wait().info
|
||
|
m = info.getMachine("Testmachine").wait()
|