Respecting LH_BOOTSTRAP_FLAVOUR (Closes: #448034).
This commit is contained in:
parent
2e260e9e86
commit
d29dd22a73
|
@ -87,14 +87,19 @@ then
|
|||
CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --keyring=${LH_BOOTSTRAP_KEYRING}"
|
||||
fi
|
||||
|
||||
case "${LH_PACKAGES_LISTS}" in
|
||||
minimal|mini)
|
||||
CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --flavour=minimal"
|
||||
;;
|
||||
*)
|
||||
CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --flavour=standard"
|
||||
;;
|
||||
esac
|
||||
if [ -z "${LH_BOOTSTRAP_FLAVOUR}" ]
|
||||
then
|
||||
case "${LH_PACKAGES_LISTS}" in
|
||||
minimal|mini)
|
||||
CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --flavour=minimal"
|
||||
;;
|
||||
*)
|
||||
CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --flavour=standard"
|
||||
;;
|
||||
esac
|
||||
else
|
||||
CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --flavour=${LH_BOOTSTRAP_FLAVOUR}"
|
||||
fi
|
||||
|
||||
if [ "${LH_DEBUG}" = "enabled" ]
|
||||
then
|
||||
|
|
|
@ -82,6 +82,17 @@ then
|
|||
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --exclude=${LH_BOOTSTRAP_EXCLUDE}"
|
||||
fi
|
||||
|
||||
if [ -z "${LH_BOOTSTRAP_FLAVOUR}" ]
|
||||
then
|
||||
case "${LH_PACKAGES_LISTS}" in
|
||||
minimal|mini)
|
||||
DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=buildd"
|
||||
;;
|
||||
esac
|
||||
else
|
||||
DEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}"
|
||||
fi
|
||||
|
||||
if [ "${LH_VERBOSE}" = "true" ]
|
||||
then
|
||||
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --verbose"
|
||||
|
|
Loading…
Reference in New Issue