Support LH_BOOTSTRAP_FLAVOUR="standard" when using debootstrap
cdebootstrap will accept --variant=standard, but debootstrap does not; this patch means that we don't try and pass it to debootstrap - this can happen if switching between the two utilities.
This commit is contained in:
parent
e554c785c9
commit
29c423b89a
|
@ -90,6 +90,8 @@ then
|
||||||
stripped|minimal)
|
stripped|minimal)
|
||||||
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=minbase"
|
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=minbase"
|
||||||
;;
|
;;
|
||||||
|
standard)
|
||||||
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}"
|
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --variant=${LH_BOOTSTRAP_FLAVOUR}"
|
||||||
|
|
Loading…
Reference in New Issue