-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrapRsaAuth.bash
executable file
·43 lines (36 loc) · 1.69 KB
/
bootstrapRsaAuth.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env bash
: <<'!COMMENT'
GGCOM - Bash - Utils - Bootstrap RSA Authentication v201504162001
Louis T. Getterman IV (@LTGIV)
www.GotGetLLC.com | www.opensour.cc/ggcom/bootstraprsa
Example usage:
bootstrapRsaAuth.bash
!COMMENT
################################################################################
SOURCE="${BASH_SOURCE[0]}" # Dave Dopson, Thank You! - http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
SCRIPTPATH="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$SCRIPTPATH/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
################################################################################
SCRIPTPATH="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SCRIPTNAME=`basename "$SOURCE"`
LIBPATH="$( cd "$(dirname "${SCRIPTPATH}/../../")" ; pwd -P )/ggcom-bash-library"
################################################################################
source "${LIBPATH}/varsBash.bash"
source "${LIBPATH}/string.bash"
source "${LIBPATH}/version.bash"
################################################################################
#
################################################################################
#----- NOTICE: INFO
echo "`getVersion $0 header`"
echo;
#-----/NOTICE: INFO
#----- PROMPTS
read -p "Username: " user;
read -p "Server: " server;
#-----/PROMPTS
value=`cat ~/.ssh/id_rsa.pub`;
ssh $user@$server "mkdir -p ~/.ssh; chmod 700 ~/.ssh/; echo '$value' >> ~/.ssh/authorized_keys; chmod 600 ~/.ssh/authorized_keys;"