summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup/core/ssh.sh7
-rwxr-xr-xsetup/core/vim.sh3
-rwxr-xr-xsetup/setup.sh2
3 files changed, 9 insertions, 3 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
diff --git a/setup/core/vim.sh b/setup/core/vim.sh
index 9571887..bd99a13 100755
--- a/setup/core/vim.sh
+++ b/setup/core/vim.sh
@@ -60,4 +60,7 @@ setlocal regexpengine=2
60set paste 60set paste
61set foldcolumn=12 61set foldcolumn=12
62 62
63set noswapfile
64autocmd InsertLeave * silent! update
65
63EOF 66EOF
diff --git a/setup/setup.sh b/setup/setup.sh
index 731310e..f0cf83b 100755
--- a/setup/setup.sh
+++ b/setup/setup.sh
@@ -15,7 +15,7 @@ source /etc/bashrc
15sudo timedatectl set-timezone Asia/Singapore 15sudo timedatectl set-timezone Asia/Singapore
16 16
17# Core setup 17# Core setup
18sudo bash ./core/install-packages.sh || { echo "Failed to install packages"; exit 1; }
19sudo bash ./core/ssh.sh || { echo "Failed to configure SSH"; exit 1; } 18sudo bash ./core/ssh.sh || { echo "Failed to configure SSH"; exit 1; }
19sudo bash ./core/install-packages.sh || { echo "Failed to install packages"; exit 1; }
20sudo bash ./core/vim.sh || { echo "Failed to configure Vim"; exit 1; } 20sudo bash ./core/vim.sh || { echo "Failed to configure Vim"; exit 1; }
21sudo bash ./core/tmux.sh || { echo "Failed to configure Tmux"; exit 1; } 21sudo bash ./core/tmux.sh || { echo "Failed to configure Tmux"; exit 1; }