MCPcopy Create free account
hub / github.com/Keeper-Security/Commander / start

Method start

keepercommander/commands/ssh_agent.py:729–736  ·  view source on GitHub ↗
(self, username=None)

Source from the content-addressed store, hash-verified

727 self._logger.warning('SSH Agent error: %s', e)
728
729 def start(self, username=None):
730 if self.is_running:
731 logging.info('ssh-agent already started')
732 return
733
734 self._thread = threading.Thread(target=self._server_proc, args=(username,), daemon=True)
735 self._thread.start()
736 time.sleep(1)
737
738 def stop(self):
739 if not self.is_running:

Callers 10

_unix_server_procMethod · 0.45
_windows_server_procMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45
print_codeMethod · 0.45
expand_cmd_argsFunction · 0.45
get_command_stringMethod · 0.45

Calls 1

infoMethod · 0.45

Tested by

no test coverage detected