summaryrefslogtreecommitdiff
path: root/setup/core/ssh.sh
diff options
context:
space:
mode:
Diffstat (limited to 'setup/core/ssh.sh')
-rwxr-xr-xsetup/core/ssh.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/setup/core/ssh.sh b/setup/core/ssh.sh
index 362903a..c4454ae 100755
--- a/setup/core/ssh.sh
+++ b/setup/core/ssh.sh
@@ -1,9 +1,12 @@
1#!/bin/bash 1#!/bin/bash
2 2
3dnf install -y git
4
3echo "PasswordAuthentication no" | sudo tee -a /etc/ssh/sshd_config 5echo "PasswordAuthentication no" | sudo tee -a /etc/ssh/sshd_config
4echo "AllowTcpForwarding yes" | sudo tee -a /etc/ssh/sshd_config 6echo "AllowTcpForwarding yes" | sudo tee -a /etc/ssh/sshd_config
5echo "GatewayPorts yes" | sudo tee -a /etc/ssh/sshd_config 7echo "GatewayPorts yes" | sudo tee -a /etc/ssh/sshd_config
6echo "AllowAgentForwarding yes" | sudo tee -a /etc/ssh/sshd_config 8echo "AllowAgentForwarding yes" | sudo tee -a /etc/ssh/sshd_config
7 9
8git clone https://git.noml.ch/keys/.git ~/keys 10git clone https://git.noml.ch/keys/ ~/keys
9~/keys/add-ssh-keys.sh 11~/keys/add-ssh-keys.sh
12sudo systemctl restart sshd