From 0dc78c1342fac64f7bd8c101d01788024a70a795 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sun, 19 Jul 2020 09:51:20 -0700 Subject: [PATCH] Key creation --- slurp-pics | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/slurp-pics b/slurp-pics index c8a92f0..c730a0d 100755 --- a/slurp-pics +++ b/slurp-pics @@ -1,7 +1,14 @@ #!/usr/bin/env bash +KEY=.slurp-key LEGACY='-oHostKeyAlgorithms=+ssh-dss' -sftp=( sftp -v -P 19362 -i .slurp-key -oConnectTimeout=4 $LEGACY ) +sftp=( sftp -v -P 19362 -i "$KEY" -oConnectTimeout=4 $LEGACY ) + +if [[ ! -e "$KEY" ]];then + ssh-keygen -f "$KEY" + echo "I generated you a key! Copy $KEY.pub to devices' authorized_keys" + exit 1 +fi seendir="slurp-seen" while read host path;do -- 2.44.1