#!/bin/bash dnf install -y git echo "PasswordAuthentication no" | sudo tee -a /etc/ssh/sshd_config echo "AllowTcpForwarding yes" | sudo tee -a /etc/ssh/sshd_config echo "GatewayPorts yes" | sudo tee -a /etc/ssh/sshd_config echo "AllowAgentForwarding yes" | sudo tee -a /etc/ssh/sshd_config git clone https://git.noml.ch/keys/ ~/keys ~/keys/add-ssh-keys.sh sudo systemctl restart sshd