From 3e33bc9e3c5d0279e3b5173532a97f7b7ca5d0b7 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Thu, 28 Mar 2024 18:34:17 +0000 Subject: Fix linking services --- install-artix.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-artix.sh b/install-artix.sh index 7613173..92a14d4 100755 --- a/install-artix.sh +++ b/install-artix.sh @@ -178,7 +178,8 @@ basestrap /mnt \ # Enable runit services services="ufw iwd dhcpcd openntpd cronie openssh" -for service in "${services}"; do +# NOTE: do not quote 'services' variable or space is ignored +for service in ${services}; do artix-chroot /mnt bash -c \ "ln -sf /etc/runit/sv/${service} /etc/runit/runsvdir/default/" done -- cgit