diff options
author | Daniel Baumann <daniel@debian.org> | 2011-08-16 20:55:47 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-08-16 20:55:47 +0200 |
commit | 78b10b2bd2839c4324b2402076e2dff8fc71e591 (patch) | |
tree | a7644da1ec93e74e179aa9c3f8fc5a57e013e3c6 /scripts/build | |
parent | 2af22aa1c40835aa08d888c533914067ab3c94a4 (diff) | |
download | vyos-live-build-78b10b2bd2839c4324b2402076e2dff8fc71e591.tar.gz vyos-live-build-78b10b2bd2839c4324b2402076e2dff8fc71e591.zip |
Merging in last bit of lb_chroot_local-packages into lb_chroot_archives (Closes: #635046).
Diffstat (limited to 'scripts/build')
-rwxr-xr-x | scripts/build/lb_chroot_archives | 6 | ||||
-rwxr-xr-x | scripts/build/lb_chroot_local-packages | 48 |
2 files changed, 6 insertions, 48 deletions
diff --git a/scripts/build/lb_chroot_archives b/scripts/build/lb_chroot_archives index 67af978dc..f91d3f32d 100755 --- a/scripts/build/lb_chroot_archives +++ b/scripts/build/lb_chroot_archives @@ -426,6 +426,12 @@ EOF fi fi + if Find_files chroot/root/packages/*.deb + then + gunzip < chroot/root/packages/Packages.gz | awk '/^Package: / { print $2 }' \ + >> chroot/root/chroot_packages + fi + # Update indices from cache if [ "${LB_CACHE_INDICES}" = "true" ] && [ -d cache/indices_bootstrap ] then diff --git a/scripts/build/lb_chroot_local-packages b/scripts/build/lb_chroot_local-packages deleted file mode 100755 index e5da1aa5e..000000000 --- a/scripts/build/lb_chroot_local-packages +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh - -## live-build(7) - System Build Scripts -## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org> -## -## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -## This is free software, and you are welcome to redistribute it -## under certain conditions; see COPYING for details. - - -set -e - -# Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh - -# Setting static variables -DESCRIPTION="$(Echo 'queue install of local packages into chroot')" -HELP="" -USAGE="${PROGRAM} [--force]" - -Arguments "${@}" - -# Reading configuration files -Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Set_defaults - -Echo_message "Begin queueing installation of local packages..." - -# Requiring stage file -Require_stagefile .stage/config .stage/bootstrap - -# Checking stage file -Check_stagefile .stage/chroot_packages - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -if Find_files chroot/root/packages/*.deb -then - gunzip < chroot/root/packages/Packages.gz | awk '/^Package: / { print $2 }' \ - >> chroot/root/chroot_packages - - # Creating stage file - Create_stagefile .stage/chroot_packages -fi |