Set simple-cdd profiles from build.sh (instead of guessing from config)

With this change, we do NOT set profiles based on DISKTYPE anymore.
Instead, we set profiles (and auto_profiles) in build.sh, depending on
the variant.

This change is in preparation for next commit, where we'll introduce a
new installer variant.
merge-requests/18/merge
Arnaud Rebillout 2 years ago
parent 7554441e39
commit ee4d243ac5
No known key found for this signature in database
GPG Key ID: E725E87914600216

@ -323,10 +323,16 @@ case "$IMAGE_TYPE" in
if [ "$KALI_VARIANT" = "netinst" ]; then
export DISKTYPE="NETINST"
else
profiles="kali"
auto_profiles="kali"
else # plain installer
export DISKTYPE="BD"
profiles="kali offline"
auto_profiles="kali offline"
fi
debug "DISKTYPE: $DISKTYPE"
debug "profiles: $profiles"
debug "auto_profiles: $auto_profiles"
if [ -e .mirror ]; then
kali_mirror=$(cat .mirror)
@ -379,7 +385,9 @@ case "$IMAGE_TYPE" in
--force-root \
--conf simple-cdd.conf \
--dist $CODENAME \
--debian-mirror $kali_mirror
--debian-mirror $kali_mirror \
--profiles "$profiles" \
--auto-profiles "$auto_profiles"
res=$?
cd ../
if [ $res -ne 0 ] || [ ! -e $IMAGE_NAME ]; then

@ -23,20 +23,10 @@
# options to determine which profiles you want to install.
# Profiles to include on the CD
#profiles=""
#profiles="x-basic ltsp"
profiles=${profiles:-kali}
# To automatically select profiles (must also be listed in profiles):
# auto_profiles="foo bar baz"
if [ "$DISKTYPE" = "NETINST" ]; then
profiles="kali"
auto_profiles="kali"
else
# Enable offline installation for full installer image
profiles="kali offline"
auto_profiles="kali offline"
fi
auto_profiles=${auto_profiles:-kali}
# To include profiles which only effect the CD build
# build_profiles="kali"

Loading…
Cancel
Save