File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
container/repositories/core/recipes/debian-bootstrap Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ priority = 10_000_000
44[parameters ]
55suite = { default = " stable" }
66snapshot = { default = " " }
7- mirror = { default = " " }
7+ mirror = { default = " " }
8+ components = { default = " main" }
Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ if [ -n "${RECIPE_PARAM_SNAPSHOT}" ]; then
3232 OPTS+=(" --aptopt=Apt::Key::gpgvcommand=/usr/libexec/mmdebstrap/gpgvnoexpkeysig" )
3333 OPTS+=(" --include=ca-certificates,mmdebstrap" )
3434elif [ -n " ${RECIPE_PARAM_MIRROR} " ]; then
35- TARGET_MIRROR=" deb [trusted=yes] ${RECIPE_PARAM_MIRROR} ${RECIPE_PARAM_SUITE} main "
35+ TARGET_MIRROR=" deb [trusted=yes] ${RECIPE_PARAM_MIRROR} ${RECIPE_PARAM_SUITE} ${RECIPE_PARAM_COMPONENTS} "
3636fi
3737
3838mmdebstrap \
3939 " ${OPTS[@]} " \
4040 " ${RECIPE_PARAM_SUITE} " \
4141 " ${RUGIX_ROOT_DIR} " \
42- ${TARGET_MIRROR: +" $TARGET_MIRROR " }
42+ ${TARGET_MIRROR: +" $TARGET_MIRROR " }
You can’t perform that action at this time.
0 commit comments