mirror of
https://github.com/tommytran732/Arch-Setup-Script
synced 2024-11-23 18:11:34 -05:00
Unbound for server installs
Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
parent
512c525049
commit
0870a38cce
11
install.sh
11
install.sh
@ -344,7 +344,7 @@ fi
|
|||||||
if [ "${install_mode}" = 'desktop' ]; then
|
if [ "${install_mode}" = 'desktop' ]; then
|
||||||
pacstrap /mnt nautilus gdm gnome-console gnome-control-center flatpak pipewire-alsa pipewire-pulse pipewire-jack
|
pacstrap /mnt nautilus gdm gnome-console gnome-control-center flatpak pipewire-alsa pipewire-pulse pipewire-jack
|
||||||
elif [ "${install_mode}" = 'server' ]; then
|
elif [ "${install_mode}" = 'server' ]; then
|
||||||
pacstrap /mnt openssh
|
pacstrap /mnt openssh unbound
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${virtualization}" = 'none' ]; then
|
if [ "${virtualization}" = 'none' ]; then
|
||||||
@ -490,6 +490,12 @@ fi
|
|||||||
## ZRAM configuration
|
## ZRAM configuration
|
||||||
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/systemd/zram-generator.conf | tee /mnt/etc/systemd/zram-generator.conf
|
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/systemd/zram-generator.conf | tee /mnt/etc/systemd/zram-generator.conf
|
||||||
|
|
||||||
|
## Setup unbound
|
||||||
|
|
||||||
|
if [ "${install_mode}" = 'server' ]; then
|
||||||
|
unpriv curl https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/unbound/unbound.conf | tee /mnt/etc/unbound/unbound.conf
|
||||||
|
fi
|
||||||
|
|
||||||
## Setup Networking
|
## Setup Networking
|
||||||
|
|
||||||
if [ "${install_mode}" = 'desktop' ]; then
|
if [ "${install_mode}" = 'desktop' ]; then
|
||||||
@ -568,7 +574,6 @@ systemctl enable reflector.timer --root=/mnt
|
|||||||
systemctl enable snapper-timeline.timer --root=/mnt
|
systemctl enable snapper-timeline.timer --root=/mnt
|
||||||
systemctl enable snapper-cleanup.timer --root=/mnt
|
systemctl enable snapper-cleanup.timer --root=/mnt
|
||||||
systemctl enable systemd-oomd --root=/mnt
|
systemctl enable systemd-oomd --root=/mnt
|
||||||
systemctl enable systemd-resolved --root=/mnt
|
|
||||||
systemctl disable systemd-timesyncd --root=/mnt
|
systemctl disable systemd-timesyncd --root=/mnt
|
||||||
|
|
||||||
if [ "${network_daemon}" = 'networkmanager' ]; then
|
if [ "${network_daemon}" = 'networkmanager' ]; then
|
||||||
@ -579,10 +584,12 @@ fi
|
|||||||
|
|
||||||
if [ "${install_mode}" = 'desktop' ]; then
|
if [ "${install_mode}" = 'desktop' ]; then
|
||||||
systemctl enable gdm --root=/mnt
|
systemctl enable gdm --root=/mnt
|
||||||
|
systemctl enable systemd-resolved --root=/mnt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${install_mode}" = 'server' ]; then
|
if [ "${install_mode}" = 'server' ]; then
|
||||||
systemctl enable sshd.socket --root=/mnt
|
systemctl enable sshd.socket --root=/mnt
|
||||||
|
systemctl enable unbound --root=/mnt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Set umask to 077.
|
## Set umask to 077.
|
||||||
|
Loading…
Reference in New Issue
Block a user