Actions
Bug #30762
closedforeman-proxy ssh key is copied 3 times to the provisioned machine in /root/.ssh/authorized_keys
Difficulty:
trivial
Triaged:
No
Bugzilla link:
Description
The ssh key is copied several times to a new host when it is kickstarting.
<%= host_param('remote_execution_ssh_keys').is_a?(String) ? host_param('remote_execution_ssh_keys') : host_param('remote_execution_ssh_keys').join("\n") %>
needs to be:
<%= host_param('remote_execution_ssh_keys').is_a?(String) ? host_param('remote_execution_ssh_keys') : host_param('remote_execution_ssh_keys').uniq.join("\n") %>
Updated by The Foreman Bot over 4 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/foreman/pull/7954 added
Updated by Tomer Brisker over 4 years ago
- Project changed from Foreman to Foreman Remote Execution
- Category deleted (
Authentication) - Assignee changed from Stefan Meyer to Adam Ruzicka
- Pull request https://github.com/theforeman/foreman_remote_execution/pull/532 added
- Pull request deleted (
https://github.com/theforeman/foreman/pull/7954)
Updated by Adam Ruzicka over 4 years ago
- Status changed from Ready For Testing to Closed
Applied in changeset foreman_plugin|3c70885824b4c71652c3332acfff0f8ff510d403.
Updated by Adam Ruzicka about 4 years ago
- Fixed in Releases foreman_remote_execution 4.2.0 added
- Fixed in Releases deleted (
)
Actions