diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-15 14:56:17 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-15 14:56:17 +0200 |
commit | d61c044ec0966dd3601bf08f8b8dd25fcdc59288 (patch) | |
tree | f6a2018f799208f595bb5f6d426b0cad4ed40985 | |
parent | 2bad1bd9c88ac57723494338d370ed16ddd7f788 (diff) | |
download | vyos-live-build-d61c044ec0966dd3601bf08f8b8dd25fcdc59288.tar.gz vyos-live-build-d61c044ec0966dd3601bf08f8b8dd25fcdc59288.zip |
Moving creation of chroot.files manifest in lb chroot after pseudo-filesystems have been unmounted to avoid loops, thanks to Michal Suchanek <hramrach@gmail.com>.
-rwxr-xr-x | scripts/build/chroot | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/build/chroot b/scripts/build/chroot index bb3c3dbaf..ca8ec65a7 100755 --- a/scripts/build/chroot +++ b/scripts/build/chroot @@ -74,7 +74,6 @@ lb chroot_hacks ${@} lb chroot_interactive ${@} Chroot chroot "dpkg-query -W" > chroot.packages.live -Chroot chroot "ls -lR" > chroot.files # Deconfiguring chroot lb chroot_archives chroot remove ${@} @@ -92,3 +91,5 @@ lb chroot_selinuxfs remove ${@} lb chroot_proc remove ${@} lb chroot_devpts remove ${@} lb chroot_cache save ${@} + +Chroot chroot "ls -lR" > chroot.files |