From 8f5b709212aa1ea28e85a0367747976cf81e0f3a Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Thu, 12 Sep 2024 13:03:14 +0200 Subject: cli: rename ogcli list scopes to ogcli list scope Use the word "scope" to keep the format coherent with the other commands. --- cli/cli.py | 4 ++-- cli/objects/scopes.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'cli') diff --git a/cli/cli.py b/cli/cli.py index ed65a4f..c3accdd 100644 --- a/cli/cli.py +++ b/cli/cli.py @@ -76,7 +76,7 @@ class OgCLI(): self.rest = OgREST(cfg['ip'], cfg['port'], cfg['api_token']) def list(self, args): - choices = ['clients', 'scopes', 'modes', 'hardware', + choices = ['clients', 'scope', 'modes', 'hardware', 'client', 'images', 'disks', 'servers', 'repos', 'live'] parser = argparse.ArgumentParser(prog='ogcli list') parser.add_argument('item', choices=choices) @@ -95,7 +95,7 @@ class OgCLI(): OgClient.list_client_hardware(self.rest, args[1:]) elif parsed_args.item == 'modes': OgModes.list_available_modes(self.rest) - elif parsed_args.item == 'scopes': + elif parsed_args.item == 'scope': OgScope.list_scopes(self.rest, args[1:]) elif parsed_args.item == 'images': OgImage.list_images(self.rest) diff --git a/cli/objects/scopes.py b/cli/objects/scopes.py index d65af0a..7f70cdd 100644 --- a/cli/objects/scopes.py +++ b/cli/objects/scopes.py @@ -38,7 +38,7 @@ class OgScope(): @staticmethod def list_scopes(rest, args): - parser = argparse.ArgumentParser(prog='ogcli list scopes') + parser = argparse.ArgumentParser(prog='ogcli list scope') parser.add_argument('--client-ip', action='append', default=[], -- cgit v1.2.3-18-g5258