summaryrefslogtreecommitdiffstats
path: root/cli/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/cli.py')
-rw-r--r--cli/cli.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/cli/cli.py b/cli/cli.py
index 18fd36c..fa5b164 100644
--- a/cli/cli.py
+++ b/cli/cli.py
@@ -86,3 +86,12 @@ class OgCLI():
if parsed_args.send_obj == 'wol':
OgWol.send_wol(self.rest, args[1:])
+
+ def restore(self, args):
+ choices = ['image']
+ parser = argparse.ArgumentParser(prog='ogcli restore')
+ parser.add_argument('send_obj', choices=choices)
+ parsed_args = parser.parse_args([args[0]])
+
+ if parsed_args.send_obj == 'image':
+ OgImage.restore_image(self.rest, args[1:])