From 0605a43e45d86c656afcf0e2f1275aed1976b285 Mon Sep 17 00:00:00 2001
From: Scott Worley <scottworley@scottworley.com>
Date: Sun, 19 Jul 2020 09:10:24 -0700
Subject: [PATCH] Be clear about this being a LEGACY thing

---
 slurp-pics | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/slurp-pics b/slurp-pics
index 68a2b12..533c680 100755
--- a/slurp-pics
+++ b/slurp-pics
@@ -1,12 +1,15 @@
 #!/bin/bash
 
+LEGACY='-oHostKeyAlgorithms=+ssh-dss'
+sftp=( sftp -v -P 19362 -i .slurp-key -oConnectTimeout=4 $LEGACY )
+
 while read host path;do
   outdir="slurp-$host"
   seendir="slurp-seen"
   {
     mkdir -p "$outdir" "$seendir/$outdir"
     echo "cd $path"
-    sftp -v -P 19362 -i .slurp-key -oConnectTimeout=4 "slurp@$host" <<< "cd $path"$'\n'"ls -1" |
+    "${sftp[@]}" "slurp@$host" <<< "cd $path"$'\n'"ls -1" |
       sed 1,2d |
       while read filename;do
         output_filename="$outdir/${filename/jpg/jpeg}"
@@ -17,7 +20,7 @@ while read host path;do
           echo "get -p $filename $output_filename"
         fi
       done
-   } | sftp -v -P 19362 -i .slurp-key "slurp@$host"
+   } | "${sftp[@]}" "slurp@$host"
    for f in "$outdir"/*;do
      touch "$seendir/$f"
    done
-- 
2.47.2