From 8a87949d359301de5f9242b05aab3de30e53fabd Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Sat, 22 May 2021 02:03:19 -0400 Subject: [PATCH] Enable Reflector Automatically updating the mirror list would be nice --- easy-arch.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/easy-arch.sh b/easy-arch.sh index 0521057..a320d23 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -142,7 +142,7 @@ kernel_selector # Pacstrap (setting up a base sytem onto the new root). echo "Installing the base system (it may take a while)." -pacstrap /mnt base $kernel $microcode linux-firmware btrfs-progs grub grub-btrfs efibootmgr snapper sudo apparmor +pacstrap /mnt base $kernel $microcode linux-firmware btrfs-progs grub grub-btrfs efibootmgr snapper sudo apparmor reflector network_selector @@ -246,6 +246,9 @@ arch-chroot /mnt /bin/passwd echo "Enabling AppArmor." systemctl enable apparmor --root=/mnt &>/dev/null +# Enabling Reflector timer. +systemctl enable reflector.timer --root=/mnt &>/dev/null + # Enabling Snapper automatic snapshots. echo "Enabling Snapper and automatic snapshots entries." systemctl enable snapper-timeline.timer --root=/mnt &>/dev/null