diff options
Diffstat (limited to 'src/linux')
-rw-r--r-- | src/linux/ogOperations.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py index 63afd12..44684e9 100644 --- a/src/linux/ogOperations.py +++ b/src/linux/ogOperations.py @@ -9,13 +9,14 @@ import os import subprocess from subprocess import CalledProcessError +from src.log import OgError from src.ogRest import ThreadState class OgLinuxOperations: def _restartBrowser(self, url): - raise NotImplementedError + raise OgError('Function not implemented') def poweroff(self): os.system('systemctl poweroff') @@ -41,25 +42,25 @@ class OgLinuxOperations: return result.stdout def session(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def hardware(self, path, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def setup(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def image_restore(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def image_create(self, path, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def cache_delete(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def cache_fetch(self, request, ogRest): - raise NotImplementedError + raise OgError('Function not implemented') def refresh(self, ogRest): return {"status": "LINUX"} |