replace rsync with unsquashfs in nanodesk-installer.sh
This commit is contained in:
parent
270f0bc3f3
commit
f7fa7a2779
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue