]> git.scottworley.com Git - picsort/blobdiff - slurp-pics
Key creation
[picsort] / slurp-pics
index 0dd4e78d821917dd0a2408f7f35981b1e77b5abb..c730a0d0b08adc288bed895ddcbd8c87c85b1ffb 100755 (executable)
@@ -1,7 +1,14 @@
-#!/bin/bash
+#!/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
@@ -24,5 +31,5 @@ while read host path;do
    for f in "$outdir"/*;do
      touch "$seendir/$f"
    done
-   rename-to-date "$outdir"/*
+   ./rename-to-date "$outdir"/*
 done < .slurp-hosts