diff options
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_bootstrap_copy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helpers/lh_bootstrap_copy b/helpers/lh_bootstrap_copy index 2b3c199..349df5b 100755 --- a/helpers/lh_bootstrap_copy +++ b/helpers/lh_bootstrap_copy @@ -51,7 +51,9 @@ Check_lockfile .lock Create_lockfile .lock # Copying host system -find / ! -name /proc ! -name /sys ! -name "$(dirname ${PWD})" | xargs cp -a chroot +cd chroot +tar c / --exclude /proc --exclude /sys "$(dirname ${PWD})" | tar xv +cd .. # Creating stage file Create_stagefile .stage/bootstrap |