diff --git a/ca_shell.py b/ca_shell.py index 594d4c4..7f63b88 100755 --- a/ca_shell.py +++ b/ca_shell.py @@ -35,6 +35,12 @@ class CAManagerShell(cmd.Cmd, object): 'Show certification authority information: DESCRIBE_CAS' raise NotImplementedError + def do_drop_request(self, l): + 'Delete a sign request: DROP_REQUEST' + request_id = l.split()[0] + + del self.ca_manager.request[request_id] + def do_gen_ca(self, l): 'Generate a certification authority: GEN_CA type id name' argv = l.split()