Browse Source

add command to list requests from shell

cmd_module
Edoardo Putti 8 years ago
parent
commit
87388cab57
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      ca_shell.py

+ 4
- 0
ca_shell.py View File

@ -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()


Loading…
Cancel
Save