diff options
| -rwxr-xr-x | install-artix.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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 |
