diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2023-01-04 09:00:15 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2023-01-04 09:00:15 -0300 |
commit | 5bebff4bb1399185e43a57aa4e29ab205a6d13af (patch) | |
tree | 724fdcf7f3cf3cfe10e90d000c38f3fd2a4e66c9 | |
parent | 25e3811d7e26ad427f2f628bf0d8260b76c15cf6 (diff) | |
download | kvmx-5bebff4bb1399185e43a57aa4e29ab205a6d13af.tar.gz kvmx-5bebff4bb1399185e43a57aa4e29ab205a6d13af.tar.bz2 |
Fix: kvmx_clone: remove --progress from rsync
-rwxr-xr-x | kvmx | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1445,7 +1445,7 @@ function kvmx_clone { local exclude="--exclude=box.img" fi - rsync -ah --sparse --progress $exclude $STORAGE/ $FOLDER/ + rsync -ah --sparse $exclude $STORAGE/ $FOLDER/ else cp -r --sparse=always $STORAGE/ $FOLDER/ fi |