1
0
mirror of https://github.com/tommytran732/QubesOS-Scripts synced 2024-09-18 14:44:43 -04:00

Add missing --proxy

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-05-21 18:35:42 -07:00
parent 8ed948c008
commit bf54db5067
Signed by: Tomster
GPG Key ID: 555C902A34EC968F

View File

@ -26,11 +26,11 @@ umask 077
echo 'umask 077' | sudo tee -a /etc/bash.bashrc
# Harden SSH
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/ssh/ssh_config.d/10-custom.conf | sudo tee /etc/ssh/ssh_config.d/10-custom.conf
unpriv curl --proxy http://127.0.0.1:8082 https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/ssh/ssh_config.d/10-custom.conf | sudo tee /etc/ssh/ssh_config.d/10-custom.conf
sudo chmod 644 /etc/ssh/ssh_config.d/10-custom.conf
# Disable coredump
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/security/limits.d/30-disable-coredump.conf | sudo tee /etc/security/limits.d/30-disable-coredump.conf
unpriv curl --proxy http://127.0.0.1:8082 https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/security/limits.d/30-disable-coredump.conf | sudo tee /etc/security/limits.d/30-disable-coredump.conf
# Setup dconf
umask 022