diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-11 00:04:26 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-11 00:04:26 +0100 |
commit | 55791c2f391320a2c20e16e8327695bfebc146e8 (patch) | |
tree | c50b6cc5bc5697c6fb99413ba421b21108034199 | |
parent | da363f50c1087648936ca01f7503cab2847c27b8 (diff) | |
download | imagefish-55791c2f391320a2c20e16e8327695bfebc146e8.tar.gz |
split rsync
-rwxr-xr-x | run-all.sh | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -28,11 +28,15 @@ nilsson) esac if test -d "$HOME/repo/images-testing"; then - # compress images + echo "# rsync uncompressed images" + rsync --verbose --progress \ + *.raw *.qcow2 $HOME/repo/images-testing + + echo "# compress images" rm -f *.xz xz --verbose --keep *.raw *.qcow2 - # store images + echo "# rsync compressed images" rsync --verbose --progress \ - *.raw *.qcow2 *.xz $HOME/repo/images-testing + *.xz $HOME/repo/images-testing fi |