summaryrefslogtreecommitdiffstats
path: root/src/windows/ogOperations.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/ogOperations.py')
-rw-r--r--src/windows/ogOperations.py10
1 files changed, 8 insertions, 2 deletions
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):