summaryrefslogtreecommitdiffstats
path: root/src/ogClient.py
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2020-05-13 17:00:35 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-05-13 17:01:20 +0200
commit5f874030f59d1d384c525b64e46c22e75d2d0d61 (patch)
tree2c9be47812be4669ebdebb074cef724bb9906625 /src/ogClient.py
parentb63bd727f983853c14086cd2005221e9dc179ccb (diff)
remove platform check
Diffstat (limited to 'src/ogClient.py')
-rw-r--r--src/ogClient.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ogClient.py b/src/ogClient.py
index fec8eb9..4c0a003 100644
--- a/src/ogClient.py
+++ b/src/ogClient.py
@@ -30,9 +30,6 @@ class ogClient:
self.mode = self.CONFIG['opengnsys']['mode']
if self.mode not in {'virtual', 'linux'}:
raise ValueError('Mode not supported.')
- if self.mode == 'linux' and platform.system() != 'Linux':
- raise ValueError('Linux mode not supported on '
- 'non-Linux platform.')
if self.CONFIG['samba']['activate']:
assert('user' in self.CONFIG['samba'])