From 87388cab57cab494af513372b9bbecde672bdca9 Mon Sep 17 00:00:00 2001 From: Edoardo Putti Date: Sat, 20 Aug 2016 01:19:46 +0200 Subject: [PATCH] add command to list requests from shell --- ca_shell.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ca_shell.py b/ca_shell.py index 4204677..8016742 100755 --- a/ca_shell.py +++ b/ca_shell.py @@ -20,6 +20,10 @@ class CAManagerShell(cmd.Cmd, object): 'List the available certification authorities: LS' list_cas(self.ca_manager) + def do_requests(self, l): + 'List the available certification requests: REQUESTS' + print_available_requests(self.ca_manager) + def do_show_ca(self, l): 'Show certification authority information: SHOW_CA' raise NotImplementedError()