fix: do not hardcode Net::SSH auth_methods

This commit is contained in:
Gianni Chiappetta
2023-09-01 15:11:12 -04:00
parent 9363b6a464
commit 84f78cd9f9

View File

@@ -18,7 +18,7 @@ class Kamal::Configuration::Ssh
end
def options
{ user: user, proxy: proxy, auth_methods: [ "publickey" ], logger: logger, keepalive: true, keepalive_interval: 30 }.compact
{ user: user, proxy: proxy, logger: logger, keepalive: true, keepalive_interval: 30 }.compact
end
def to_h