From 28cb12de1680bc1145da2a3fb79030ad69dbd779 Mon Sep 17 00:00:00 2001 From: Dennis ten Hoove Date: Tue, 17 Oct 2023 18:52:31 +0200 Subject: [PATCH] Remove systemd.services --- arkdep-build | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/arkdep-build b/arkdep-build index f4491a7..04b3316 100755 --- a/arkdep-build +++ b/arkdep-build @@ -137,19 +137,6 @@ if [[ $type == 'archlinux' ]]; then arch-chroot $workdir pacman -S --noconfirm ${packages[*]} || cleanup_and_quit 'Failed to install base packages' fi - # Enable systemd services if requested - if [[ -e $configs_dir/$variant/systemd.services ]]; then - - printf '\e[1;34m-->\e[0m\e[1m Enabling systemd services\e[0m\n' - - readarray services < $configs_dir/$variant/systemd.services - - for service in ${services[*]}; do - arch-chroot $workdir systemctl enable $service - done - - fi - # Clear pacman cache arch-chroot $workdir pacman --noconfirm -Scc