This commit is contained in:
idanoo 2023-01-06 13:52:00 +13:00
parent 490bbca4d4
commit 6e5099b5ee
Signed by: idanoo
GPG Key ID: 387387CDBC02F132
3 changed files with 33 additions and 6 deletions

View File

@ -17,6 +17,18 @@ title: "Employment History"
</div> </div>
<br/> <br/>
<h1 style="font-size: 1.6rem;" class="animate__animated animate__pulse animate__faster">Employment</h1> <h1 style="font-size: 1.6rem;" class="animate__animated animate__pulse animate__faster">Employment</h1>
<div style="display: flex;">
<div style="flex-direction: row; margin-right: 20px">
<img alt="ezyVet Logo" title="ezyVet Logo" src="/ezyvet_logo.png">
</div>
<div style="flex-direction: row">
<h3 style="margin-top: 5px">ezyVet</h3>
<h4 style="margin-top:-16px; color: #afbac4">Senior Site Reliability Engineer</h4>
<p style="margin-top:-20px;">December 2022 - Current</p>
</div>
</div>
<br/>
<div style="display: flex;"> <div style="display: flex;">
<div style="flex-direction: row; margin-right: 20px"> <div style="flex-direction: row; margin-right: 20px">
<img alt="ezyVet Logo" title="ezyVet Logo" src="/ezyvet_logo.png"> <img alt="ezyVet Logo" title="ezyVet Logo" src="/ezyvet_logo.png">
@ -24,7 +36,7 @@ title: "Employment History"
<div style="flex-direction: row"> <div style="flex-direction: row">
<h3 style="margin-top: 5px">ezyVet</h3> <h3 style="margin-top: 5px">ezyVet</h3>
<h4 style="margin-top:-16px; color: #afbac4">Site Reliability Engineer</h4> <h4 style="margin-top:-16px; color: #afbac4">Site Reliability Engineer</h4>
<p style="margin-top:-20px;">August 2019 - Current</p> <p style="margin-top:-20px;">August 2019 - December 2022</p>
</div> </div>
</div> </div>

View File

@ -1,6 +1,3 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBwm+4i0Ql1OYXfOpEUrFjC/XpiI5yxBBU3iH4QOKRpN ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBwm+4i0Ql1OYXfOpEUrFjC/XpiI5yxBBU3iH4QOKRpN
#ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBUGjx548ID+XqAPVLvwjlNHqWIO0tzC02Q+/vWvnIJT kodiack
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBUGjx548ID+XqAPVLvwjlNHqWIO0tzC02Q+/vWvnIJT kodiack #ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILuBk6bmNTbinqUqDMziZk+mal7s8D16q+HOGFIcqz1N zyk@disroot.org
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILuBk6bmNTbinqUqDMziZk+mal7s8D16q+HOGFIcqz1N zyk@disroot.org

18
static/setup-static.sh Normal file
View File

@ -0,0 +1,18 @@
#!/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;