Making it so that lanforge-scripts can work if the repository isn't named exactly the same way

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-09-17 15:29:15 -07:00
parent b8fa4377a7
commit 36400e003d
125 changed files with 572 additions and 578 deletions

View File

@@ -15,17 +15,17 @@ if sys.version_info[0] != 3:
print("This script requires Python 3")
exit(1)
if 'lanforge-scripts' not in sys.path:
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../../")))
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
LFUtils = importlib.import_module("lanforge-scripts.py-json.LANforge.LFUtils")
LFUtils = importlib.import_module("py-json.LANforge.LFUtils")
removeCX = LFUtils.removeCX
removeEndps = LFUtils.removeEndps
lfcli_base = importlib.import_module("lanforge-scripts.py-json.LANforge.lfcli_base")
lfcli_base = importlib.import_module("py-json.LANforge.lfcli_base")
LFCliBase = lfcli_base.LFCliBase
realm = importlib.import_module("lanforge-scripts.py-json.realm")
realm = importlib.import_module("py-json.realm")
Realm = realm.Realm
influx = importlib.import_module("lanforge-scripts.py-scripts.influx")
influx = importlib.import_module("py-scripts.influx")
RecordInflux = influx.RecordInflux
OPEN = "open"