summaryrefslogtreecommitdiff
path: root/configs/profile
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-09-07 01:13:17 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2022-05-01 23:13:40 -0400
commit640513f18fec15f24fedf43eb8e86dfae6530637 (patch)
tree709a3cd4429eb19040f3270fa1bc9260482c5b31 /configs/profile
parenta6cd14f9bdb182a80ac9eb305ac8c4902059096c (diff)
add CLI services
Diffstat (limited to 'configs/profile')
-rw-r--r--configs/profile/root-image/root/customize_root_image-constants.inc14
1 files changed, 9 insertions, 5 deletions
diff --git a/configs/profile/root-image/root/customize_root_image-constants.inc b/configs/profile/root-image/root/customize_root_image-constants.inc
index 7c0a98e..e6057bb 100644
--- a/configs/profile/root-image/root/customize_root_image-constants.inc
+++ b/configs/profile/root-image/root/customize_root_image-constants.inc
@@ -44,17 +44,21 @@ readonly OPENRC_SERVICES_ALL="dbus \
pacman-init "
readonly OPENRC_SERVICES_GUI="alsasound"
readonly SYSTEMD_SERVICES_ALL="choose-mirror.service \
+ haveged.service \
multi-user.target \
pacman-init.service "
readonly SYSTEMD_SERVICES_ACC="bluetooth.service \
brltty.service \
livecd-alsa-unmuter.service "
+readonly SYSTEMD_SERVICES_CLI="dhcpcd.service \
+ systemd-resolved.service "
readonly SYSTEMD_SERVICES_GUI="NetworkManager.service"
-readonly OPENRC_SERVICES="${OPENRC_SERVICES_ALL} \
- $([[ "${ISO_WMDE}" != 'cli' ]] && echo " ${OPENRC_SERVICES_GUI}")"
-readonly SYSTEMD_SERVICES="${SYSTEMD_SERVICES_ALL} \
- $([[ "${ISO_WMDE}" != 'cli' ]] && echo " ${SYSTEMD_SERVICES_GUI}") \
- $([[ "${ENABLE_TTS_BRLTTY}" == 'yes' ]] && echo " ${SYSTEMD_SERVICES_ACC}") "
+readonly OPENRC_SERVICES="${OPENRC_SERVICES_ALL} \
+ $( [[ "${ISO_WMDE}" != 'cli' ]] && echo " ${OPENRC_SERVICES_GUI}" )"
+readonly SYSTEMD_SERVICES="${SYSTEMD_SERVICES_ALL} \
+ $( [[ "${ENABLE_TTS_BRLTTY}" == 'yes' ]] && echo " ${SYSTEMD_SERVICES_ACC}" ) \
+ $( [[ "${ISO_WMDE}" == 'cli' ]] && echo " ${SYSTEMD_SERVICES_CLI}" || \
+ echo " ${SYSTEMD_SERVICES_GUI}" ) "
## system defaults and root user ##