Actions
Bug #31516
closedCockpit with ssh key passphrase does not work
Status:
Closed
Priority:
Normal
Assignee:
Category:
Smart Proxy - SSH
Target version:
Difficulty:
Triaged:
No
Bugzilla link:
Fixed in Releases:
Found in Releases:
Description
Remote executions cockpit integration does not pick up the ssh key passphrase due to a syntax error in lib/smart_proxy_remote_execution_ssh/cockpit.rb:
def ssh_options ... ret[:passphrase] = params[:ssh_key_passphrase] if params[:ssh_key_passphrase]
Should be
def ssh_options ... ret[:passphrase] = params["ssh_key_passphrase"] if params["ssh_key_passphrase"]
Actions