From a0f85303525825218bedd4c525c5a5ceceeb6667 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Mon, 11 Nov 2024 14:34:45 +0100 Subject: src: update functions for every ogClient mode Add missing ogClient mode functions and show an error in every unimplemented function. --- src/windows/ogOperations.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/windows/ogOperations.py') diff --git a/src/windows/ogOperations.py b/src/windows/ogOperations.py index 4eae217..fcd6a20 100644 --- a/src/windows/ogOperations.py +++ b/src/windows/ogOperations.py @@ -80,6 +80,9 @@ class OgWindowsOperations: os.system('shutdown -r -t 0') def shellrun(self, request, ogRest): + raise OgError('Function not implemented') + + def cmdrun(self, request, ogRest): cmd = request.getrun() try: result = subprocess.run(cmd, @@ -99,7 +102,10 @@ class OgWindowsOperations: def session(self, request, ogRest): raise OgError('Function not implemented') - def hardware(self, path, ogRest): + def software(self, request, ogRest): + raise OgError('Function not implemented') + + def hardware(self, ogRest): raise OgError('Function not implemented') def setup(self, request, ogRest): @@ -108,7 +114,7 @@ class OgWindowsOperations: def image_restore(self, request, ogRest): raise OgError('Function not implemented') - def image_create(self, path, request, ogRest): + def image_create(self, request, ogRest): raise OgError('Function not implemented') def cache_delete(self, request, ogRest): -- cgit v1.2.3-18-g5258