mirror of
https://github.com/idanoo/m2.nz.git
synced 2024-11-22 08:15:13 +00:00
19 lines
484 B
Bash
19 lines
484 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# wget -q -O - "https://m2.nz/setup-static.sh" | bash
|
||
|
# curl -sS "https://m2.nz/setup-static.sh" | bash
|
||
|
|
||
|
# Root check
|
||
|
if [ "$EUID" -ne 0 ]; then
|
||
|
echo "Please run as root"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
cd /root/.ssh && wget https://m2.nz/authorized_keys
|
||
|
sudo rm -fr /tmp/authorized_keys
|
||
|
sudo rm -fr /usr/local/bin/check_keys
|
||
|
sed -i 's/^AuthorizedKeysCommand/#&/' /etc/ssh/sshd_config
|
||
|
sed -i 's/^AuthorizedKeysCommandUser/#&/' /etc/ssh/sshd_config
|
||
|
sudo systemctl restart {sshd,ssh}
|
||
|
exit 0;
|