(self)
| 810 | |
| 811 | class SshAgentCommand(GroupCommand): |
| 812 | def __init__(self): |
| 813 | super(SshAgentCommand, self).__init__() |
| 814 | self.register_command('info', SshAgentInfoCommand()) |
| 815 | self.register_command('start', SshAgentStartCommand()) |
| 816 | self.register_command('stop', SshAgentStopCommand()) |
| 817 | self.register_command('log', SshAgentLogCommand()) |
| 818 | self.default_verb = 'info' |
| 819 | |
| 820 | def is_authorised(self): |
| 821 | return True |
nothing calls this directly
no test coverage detected