summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2021-11-18 16:31:36 +0100
committerJose M. Guisado <jguisado@soleta.eu>2021-11-18 16:31:36 +0100
commit2dbcd18c06dd78491026bcb6fbd770175de4948f (patch)
tree3f3f748a31f196355187ece7efd719395e692f8b /src
parentf9511932ad996a4cd75b569cfa0eb7ccc223b608 (diff)
#1065 revisit config_path initialization
If current platform is Linux (either live, virtual or linux) expect /opt/opengnsys/ogclient/cfg/ to contain ogclient.json. If current platform is not Linux then we fallback to current directory.
Diffstat (limited to 'src')
-rw-r--r--src/ogClient.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ogClient.py b/src/ogClient.py
index 13a55f4..5fcb1c8 100644
--- a/src/ogClient.py
+++ b/src/ogClient.py
@@ -24,7 +24,10 @@ class State(Enum):
FORCE_DISCONNECTED = 2
class ogClient:
- OG_PATH = '/opt/opengnsys/'
+ if platform.system().lower() == 'linux':
+ OG_PATH = '/opt/opengnsys/ogclient/'
+ else:
+ OG_PATH = './'
def __init__(self, config):
self.CONFIG = config