Skip to content

Commit

Permalink
fix 133: Remove ssh-dss from ssh arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonbc2 authored Jul 24, 2024
1 parent 453917b commit a872016
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion aci-preupgrade-validation-script.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ def connect(self):
logging.debug(
"spawning new pexpect connection: ssh %s@%s -p %d" % (self.username, self.hostname, self.port))
no_verify = " -o StrictHostKeyChecking=no -o LogLevel=ERROR -o UserKnownHostsFile=/dev/null"
no_verify += " -o HostKeyAlgorithms=+ssh-dss"
if self.verify: no_verify = ""
self.child = pexpect.spawn("ssh %s %s@%s -p %d" % (no_verify, self.username, self.hostname, self.port),
searchwindowsize=self.searchwindowsize)
Expand Down

0 comments on commit a872016

Please sign in to comment.