feat: setup-server from link
This commit is contained in:
parent
8e84f59ef5
commit
26f3d9713e
1 changed files with 17 additions and 0 deletions
17
tools/migration/initial-connection-to-server.sh
Executable file
17
tools/migration/initial-connection-to-server.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
if ! [ "$(id -u)" = "0" ]; then
|
||||
echo "please perform as root, attempting to escalate privileges..."
|
||||
exec sudo $(cat /proc/$$/cmdline | sed 's/\x00/ /g')
|
||||
exit 1
|
||||
fi
|
||||
|
||||
scp \
|
||||
-i /etc/ixvd/secrets/ssh/keys/master/ixvd-master \
|
||||
/etc/ixvd/secrets/ssh/keys/master/ixvd-master \
|
||||
root@$1:.ssh/id_rsa
|
||||
|
||||
ssh \
|
||||
-i /etc/ixvd/secrets/ssh/keys/master/ixvd-master \
|
||||
root@$1 \
|
||||
chmod 600 .ssh/id_rsa
|
Loading…
Reference in a new issue