From e86467996fb0855020c10b4c27ee502e16ef7abc Mon Sep 17 00:00:00 2001 From: Matt Troutman Date: Thu, 29 Aug 2024 11:33:57 -0500 Subject: [PATCH] Updated Key installer --- key_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/key_install.sh b/key_install.sh index 59b4943..cc85bbf 100755 --- a/key_install.sh +++ b/key_install.sh @@ -1,4 +1,4 @@ -# /bin/sh +#! /bin/sh # Check for .ssh directory if [ ! -d ~/.ssh ]; then @@ -13,7 +13,7 @@ if [ ! -f ~/.ssh/authorized_keys ]; then fi # Add public key to authorized_keys file -echo ./id_rsa.pub >> ~/.ssh/authorized_keys +echo $"(curl https://git.trtmn.io/trtmn/public-key/raw/branch/main/id_rsa.pub)" >> ~/.ssh/authorized_keys