summaryrefslogtreecommitdiff
path: root/scripts/build/lb_chroot_local-packages
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2011-06-15 22:08:23 +0200
committerDaniel Baumann <daniel@debian.org>2011-06-15 22:08:44 +0200
commitb86f9c6380cd28a8bfb163b42fb1e80f2f489685 (patch)
tree80977191eed8ab625bea2069cb7491909b9d44d0 /scripts/build/lb_chroot_local-packages
parentcfb6ecedfa5f923296c6ab23b7d1e8ec60f0f156 (diff)
downloadvyos-live-build-b86f9c6380cd28a8bfb163b42fb1e80f2f489685.tar.gz
vyos-live-build-b86f9c6380cd28a8bfb163b42fb1e80f2f489685.zip
Since we don't have global packages anymore, renaming lb_chroot_local-packages to lb_chroot_packages and config/chroot_local-packages to config/chroot_packages.
Diffstat (limited to 'scripts/build/lb_chroot_local-packages')
-rwxr-xr-xscripts/build/lb_chroot_local-packages8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/lb_chroot_local-packages b/scripts/build/lb_chroot_local-packages
index bca5c5ede..e5da1aa5e 100755
--- a/scripts/build/lb_chroot_local-packages
+++ b/scripts/build/lb_chroot_local-packages
@@ -30,7 +30,7 @@ Echo_message "Begin queueing installation of local packages..."
Require_stagefile .stage/config .stage/bootstrap
# Checking stage file
-Check_stagefile .stage/chroot_local-packages
+Check_stagefile .stage/chroot_packages
# Checking lock file
Check_lockfile .lock
@@ -38,11 +38,11 @@ Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
-if Find_files chroot/root/local-packages/*.deb
+if Find_files chroot/root/packages/*.deb
then
- gunzip < chroot/root/local-packages/Packages.gz | awk '/^Package: / { print $2 }' \
+ gunzip < chroot/root/packages/Packages.gz | awk '/^Package: / { print $2 }' \
>> chroot/root/chroot_packages
# Creating stage file
- Create_stagefile .stage/chroot_local-packages
+ Create_stagefile .stage/chroot_packages
fi