config.sh: Don't configure Anaconda Initial Setup on GNOME

GNOME provides its own Initial Setup wizard, and we want it to
use that. Additionally, ensure that we never run this logic for
KDE either, since we provide a Calamares-based firstboot for KDE.
This commit is contained in:
Neal Gompa 2023-09-23 20:38:37 -04:00
parent d07fa7ed66
commit 133321c403

View File

@ -72,7 +72,7 @@ mkdir -p /var/log/journal
if [[ "$kiwi_profiles" == *"KDE"* ]]; then if [[ "$kiwi_profiles" == *"KDE"* ]]; then
## Enable calamares ## Enable calamares
systemctl enable calamares-firstboot.service systemctl enable calamares-firstboot.service
else elif [[ "$kiwi_profiles" != *"GNOME"* ]] && [[ "$kiwi_profiles" != *"KDE"* ]]; then
## Enable initial-setup ## Enable initial-setup
systemctl enable initial-setup.service systemctl enable initial-setup.service
## Enable reconfig mode ## Enable reconfig mode