aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-11-03 09:53:21 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-11-03 09:53:21 -0300
commita4037fb36e20423df5223b10ec5aec18ab09d8fe (patch)
tree56d821235a8396e6e8318fe1313ee476956846c8
parent061e8fc1178721804443863b83dec314908adedb (diff)
downloadkvmx-a4037fb36e20423df5223b10ec5aec18ab09d8fe.tar.gz
kvmx-a4037fb36e20423df5223b10ec5aec18ab09d8fe.tar.bz2
String fixes
-rwxr-xr-xkvmx8
1 files changed, 4 insertions, 4 deletions
diff --git a/kvmx b/kvmx
index bfc4506..85e5c4c 100755
--- a/kvmx
+++ b/kvmx
@@ -1332,7 +1332,7 @@ function kvmx_destroy {
#kvmx_stop
if kvmx_running; then
- echo "$BASENAME: orig $VM is running, cannot destroy."
+ echo "$BASENAME: $VM is running, cannot destroy."
exit 1
fi
@@ -1347,7 +1347,7 @@ function kvmx_shred {
#kvmx_stop
if kvmx_running; then
- echo "$BASENAME: orig $VM is running, cannot shred."
+ echo "$BASENAME: $VM is running, cannot shred."
exit 1
fi
@@ -1365,7 +1365,7 @@ function kvmx_wipe {
#kvmx_stop
if kvmx_running; then
- echo "$BASENAME: orig $VM is running, cannot wipe."
+ echo "$BASENAME: $VM is running, cannot wipe."
exit 1
fi
@@ -1373,7 +1373,7 @@ function kvmx_wipe {
wipe -f $image
rm -f $image
else
- echo "$BASENAME: error wipeing $image: wipe program not available."
+ echo "$BASENAME: error wiping $image: wipe program not available."
exit 1
fi
}