diff options
Diffstat (limited to 'helpers/lh_binary_manifest')
-rwxr-xr-x | helpers/lh_binary_manifest | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/helpers/lh_binary_manifest b/helpers/lh_binary_manifest index d109280db..a0c248022 100755 --- a/helpers/lh_binary_manifest +++ b/helpers/lh_binary_manifest @@ -16,19 +16,22 @@ Read_conffile config/image Set_defaults # Requiring stage file -Require_stagefile "${LIVE_ROOT}"/.stage/bootstrap +Require_stagefile .stage/bootstrap # Checking lock file -Check_lockfile "${LIVE_ROOT}"/.lock +Check_lockfile .lock # Creating lock file -Create_lockfile "${LIVE_ROOT}"/.lock +Create_lockfile .lock # Checking stage file -Check_stagefile "${LIVE_ROOT}"/.stage/binary_manifest +Check_stagefile .stage/binary_manifest # Add filesystem.manifest -Chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > "${LIVE_ROOT}"/binary/casper/filesystem.manifest +Chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > binary/casper/filesystem.manifest + +# Add packages.list +Chroot "dpkg -l" > packages.txt # Creating stage file -Create_stagefile "${LIVE_ROOT}"/.stage/binary_manifest +Create_stagefile .stage/binary_manifest |