We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d48976 commit cd77e67Copy full SHA for cd77e67
python/understack-workflows/understack_workflows/helpers.py
@@ -4,8 +4,6 @@
4
from functools import partial
5
from urllib.parse import urlparse
6
7
-import sushy
8
-
9
10
def setup_logger(name: str | None = None, level: int = logging.DEBUG):
11
"""Standardize our logging.
@@ -61,15 +59,3 @@ def credential(subpath, item):
61
59
with ref.open() as f:
62
60
return f.read().strip()
63
64
65
-def oob_sushy_session(oob_ip, oob_username, oob_password):
66
- return sushy.Sushy(
67
- f"https://{oob_ip}",
68
- username=oob_username,
69
- password=oob_password,
70
- verify=False,
71
- )
72
73
74
-def is_off_board(interface):
75
- return "Embedded ALOM" in interface.location or "Embedded" not in interface.location
0 commit comments