forked from milos85vasic/Server-Factory-Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit_ssh_access.sh
More file actions
executable file
·116 lines (84 loc) · 2.37 KB
/
init_ssh_access.sh
File metadata and controls
executable file
·116 lines (84 loc) · 2.37 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/bin/sh
machine=$1
if [ -z "$2" ]
then
port="22"
else
port=$2
fi
certificate=~/.ssh/server_factory
echo "$certificate: Checking certificate"
if test -e "$certificate"; then
echo "$certificate: Available"
else
echo "WARNING: $certificate not available, we will generate it"
if echo "$certificate" | ssh-keygen -t ed25519 -C "client@server.factory"; then
echo "$certificate: Generated"
if eval "$(ssh-agent -s)"; then
if uname | grep -i "darwin" >/dev/null 2>&1; then
config=~/.ssh/config
if ! test -e "$config" && touch "$config"; then
echo "$config: Created"
fi
if test -e "$config"; then
echo "$config: Ready"
if echo """
Host client.server.factory
AddKeysToAgent yes
IdentityFile $certificate
""" | tee "$config" ; then
echo "$certificate: Identity added to config"
else
echo "ERROR: $certificate failed to add identity"
exit 1
fi
else
echo "ERROR: $config not available"
exit 1
fi
fi
if ssh-add "$certificate"; then
echo "$certificate: Loaded"
else
echo "ERROR: $certificate not loaded"
exit 1
fi
else
echo "ERROR: SSH agent failure"
exit 1
fi
else
echo "ERROR: $certificate not Generated"
exit 1
fi
fi
echo "$machine: Checking reachability"
if ping -c 3 "$machine" >/dev/null 2>&1; then
echo "$machine: Reachable"
else
echo "ERROR: $machine is unreachable"
exit 1
fi
authorized_keys=".ssh/authorized_keys"
if ssh -p "$port" root@"$machine" cat "$authorized_keys" | grep "$(cat $certificate.pub)" >/dev/null 2>&1; then
echo "$certificate: Available on $machine"
else
if ssh -p "$port" root@"$machine" mkdir -p .ssh; then
echo "$machine: .ssh directory created"
if cat "$certificate".pub | ssh -p "$port" root@"$machine" "cat >> $authorized_keys"; then
echo "$machine: Certificate imported"
if ssh -p "$port" root@"$machine" 'echo Hello'; then
echo "$machine: Ready"
else
echo "ERROR: $machine is not ready"
exit 1
fi
else
echo "ERROR: $machine certificate not imported"
exit 1
fi
else
echo "ERROR: $machine .ssh directory not created"
exit 1
fi
fi