wrap with block
[webi-installers/.git] / ssh-utils / ssh-pubkey.sh
index 044e1e11667b243cad6bd9f71581346028cd2e4f..9f0722911b6ee68640012814bf885f2b60aa580b 100644 (file)
@@ -1,25 +1,27 @@
 #!/bin/bash
 
-set -e
-set -u
+{
+    set -e
+    set -u
 
-mkdir -p "$HOME/.ssh/"
+    mkdir -p "$HOME/.ssh/"
 
-if [ ! -f "$HOME/.ssh/id_rsa" ]; then
-    ssh-keygen -b 2048 -t rsa -f "$HOME/.ssh/id_rsa" -q -N ""
-    echo ""
-fi
+    if [ ! -f "$HOME/.ssh/id_rsa" ]; then
+        ssh-keygen -b 2048 -t rsa -f "$HOME/.ssh/id_rsa" -q -N ""
+        echo ""
+    fi
 
-if [ ! -f "$HOME/.ssh/id_rsa.pub" ]; then
-    ssh-keygen -y -f "$HOME/.ssh/id_rsa" > "$HOME/.ssh/id_rsa.pub"
-    echo ""
-fi
+    if [ ! -f "$HOME/.ssh/id_rsa.pub" ]; then
+        ssh-keygen -y -f "$HOME/.ssh/id_rsa" > "$HOME/.ssh/id_rsa.pub"
+        echo ""
+    fi
 
-# TODO use the comment (if any) for the name of the file
-echo ""
-echo "~/Downloads/id_rsa.$(whoami).pub":
-echo ""
-rm -f "$HOME/Downloads/id_rsa.$(whoami).pub":
-cp -r "$HOME/.ssh/id_rsa.pub" "$HOME/Downloads/id_rsa.$(whoami).pub"
-cat "$HOME/Downloads/id_rsa.$(whoami).pub"
-echo ""
+    # TODO use the comment (if any) for the name of the file
+    echo ""
+    echo "~/Downloads/id_rsa.$(whoami).pub":
+    echo ""
+    rm -f "$HOME/Downloads/id_rsa.$(whoami).pub":
+    cp -r "$HOME/.ssh/id_rsa.pub" "$HOME/Downloads/id_rsa.$(whoami).pub"
+    cat "$HOME/Downloads/id_rsa.$(whoami).pub"
+    echo ""
+}