2023-10-30 00:56:13 +01:00
|
|
|
#!/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
|
|
|
|
|
2023-10-30 00:59:38 +01:00
|
|
|
if ! [ "$HOSTNAME" = "link" ]; then
|
|
|
|
echo "this should only be ran on link"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-10-30 00:56:13 +01:00
|
|
|
scp \
|
|
|
|
/etc/ixvd/secrets/ssh/keys/master/ixvd-master \
|
|
|
|
root@$1:.ssh/id_rsa
|
|
|
|
|
|
|
|
ssh \
|
|
|
|
root@$1 \
|
|
|
|
chmod 600 .ssh/id_rsa
|