From c39a1fed34ac2edd198ed1afc5e367e7d2238588 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Mon, 19 Aug 2024 02:23:01 +0100 Subject: Fix openntpd service name & switch to dhcpcd --- install-artix.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/install-artix.sh b/install-artix.sh index 431a6e2..83b27cd 100755 --- a/install-artix.sh +++ b/install-artix.sh @@ -254,7 +254,7 @@ basestrap /mnt --needed \ {iwd,dhcpcd,openntpd,cronie,openssh,ufw,dbus,seatd}-dinit # Enable services -services="dbus ufw iwd openntpd cronie turnstiled seatd" +services="dbus ufw iwd dhcpcd ntpd cronie turnstiled seatd" # NOTE: do not quote 'services' variable or space is ignored for service in ${services}; do artix-chroot /mnt bash -c \ @@ -325,11 +325,6 @@ sed "s/# Misc options/# Misc options\n${pac_options}/g" \ # Enable firewall sed "s/ENABLED=no/ENABLED=yes/" -i /mnt/etc/ufw/ufw.conf -# Enable iwd's built-in DHCP -mkdir -p /mnt/etc/iwd -printf "[General]\nEnableNetworkConfiguration=true" \ - > /mnt/etc/iwd/main.conf - # Enable turnstile rundir sed "s/manage_rundir = no/manage_rundir = yes/" -i /mnt/etc/turnstile/turnstiled.conf -- cgit