Tidy calls to new Expand_packagelist
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
parent
d49857d8ff
commit
f8c8aaa99a
|
@ -51,8 +51,7 @@ then
|
|||
for PACKAGESLIST in config/binary_local-packageslists/*
|
||||
do
|
||||
# Generate package list
|
||||
Expand_packagelist "$(basename ${PACKAGESLIST})" "config/binary_local-packageslists" "${LH_BASE:-/usr/share/live-helper/lists}/lists" > chroot/root/"$(basename ${PACKAGESLIST})"
|
||||
|
||||
Expand_packagelist "${PACKAGESLIST}" "config/binary_local-packageslists" > chroot/root/"$(basename ${PACKAGESLIST})"
|
||||
|
||||
# Downloading additional packages
|
||||
Chroot "xargs --arg-file=/root/$(basename ${PACKAGESLIST}) apt-get ${APT_OPTIONS} -o Dir::Cache=/binary.deb --download-only install"
|
||||
|
|
|
@ -47,11 +47,8 @@ then
|
|||
for PACKAGES_LIST in config/chroot_local-packageslists/*
|
||||
do
|
||||
# Generate package list
|
||||
Expand_packagelist \
|
||||
"$(basename ${PACKAGES_LIST})" \
|
||||
"config/chroot_local-packageslists" \
|
||||
"${LH_BASE:-/usr/share/live-helper/lists}/lists" \
|
||||
>> chroot/root/chroot_packages
|
||||
Expand_packagelist "${PACKAGES_LIST}" "config/chroot_local-packageslists" \
|
||||
>> chroot/root/chroot_packages
|
||||
done
|
||||
|
||||
# Creating stage file
|
||||
|
|
|
@ -47,17 +47,9 @@ then
|
|||
|
||||
for LIST in ${LH_PACKAGES_LISTS}
|
||||
do
|
||||
if [ -f ${LH_BASE:-/usr/share/live-helper}/lists/"${LIST}" ]
|
||||
then
|
||||
# Generating package list
|
||||
Expand_packagelist \
|
||||
"${LIST}" \
|
||||
"config/chroot_local-packageslists" \
|
||||
"${LH_BASE:-/usr/share/live-helper}/lists" \
|
||||
>> chroot/root/chroot_packages
|
||||
else
|
||||
Echo_warning "skipping installation of unknown packages list '${LIST}'."
|
||||
fi
|
||||
# Generating package list
|
||||
Expand_packagelist "${LIST}" "config/chroot_local-packageslists" \
|
||||
>> chroot/root/chroot_packages
|
||||
done
|
||||
|
||||
# Creating stage file
|
||||
|
|
Loading…
Reference in New Issue