diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-06-14 21:16:00 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-06-14 21:16:00 -0300 |
commit | e689eb995253a1861998514e49888430456f194b (patch) | |
tree | 564d35ba9a09db35432bb8e6f21ae4ef97117f2a | |
parent | 85b75902e8866076844e41b6c9406f94bf54305f (diff) | |
download | kvmx-e689eb995253a1861998514e49888430456f194b.tar.gz kvmx-e689eb995253a1861998514e49888430456f194b.tar.bz2 |
Verbosity changes
-rwxr-xr-x | kvmx | 1 | ||||
-rwxr-xr-x | kvmx-supervise | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1750,6 +1750,7 @@ function kvmx_compress { local size_before_bytes="`du $image | awk '{ print $1 }'`" local size_before_human="`du -h $image | awk '{ print $1 }'`" + echo "$BASENAME: compressing $image..." qemu-img convert -O qcow2 -p $compression $image $image.new && mv $image.new $image || exit 1 # Size after compression diff --git a/kvmx-supervise b/kvmx-supervise index dd6f494..441c506 100755 --- a/kvmx-supervise +++ b/kvmx-supervise @@ -115,7 +115,7 @@ function kvmx_supervise_foreach { user="`echo $instance | cut -d / -f 3`" vm="`basename $instance`" - echo "Processing $mv guest..." + #echo "$BASENAME: $vm guest..." kvmx_supervise_call $user $vm $* done } |