replace rsync with unsquashfs in nanodesk-installer.sh

This commit is contained in:
Marcus 2023-10-22 03:26:11 +02:00
parent 270f0bc3f3
commit f7fa7a2779
1 changed files with 4 additions and 1 deletions

View File

@ -107,7 +107,10 @@ message "mounting $target to /mnt/"
mount $target /mnt || error
message "copy systemfiles"
rsync -aHx / /mnt/ || error
# rsync is dumb
#rsync -aHx / /mnt/ || error
unsquashfs -d /mnt/ /run/live/medium/live/filesystem.squashfs || error
message "bind mount dev proc sys"
for m in dev proc sys