diff --git a/scripts/vm/hypervisor/xenserver/copy_vhd_from_secondarystorage.sh b/scripts/vm/hypervisor/xenserver/copy_vhd_from_secondarystorage.sh index f5d420e7d20..e079fa3fdc5 100755 --- a/scripts/vm/hypervisor/xenserver/copy_vhd_from_secondarystorage.sh +++ b/scripts/vm/hypervisor/xenserver/copy_vhd_from_secondarystorage.sh @@ -44,13 +44,13 @@ localmp=/var/run/cloud_mount/$(uuidgen -r) mkdir -p $localmp if [ $? -ne 0 ]; then - echo "5#cann't make dir $localmp" + echo "5#can't make dir $localmp" exit 0 fi mount $mountpoint $localmp -r if [ $? -ne 0 ]; then - echo "6#cann't mounbt $mountpoint to $localmp" + echo "6#can't mount $mountpoint to $localmp" exit 0 fi @@ -141,7 +141,7 @@ elif [ $type == "lvmoiscsi" -o $type == "lvm" -o $type == "lvmohba" ]; then desvhd=/dev/VG_XenStorage-$sruuid/VHD-$uuid lvchange -ay $desvhd if [ $? -ne 0 ]; then - echo "10#lvm can not make VDI $uuid visiable" + echo "10#lvm can not make VDI $uuid visible" cleanup exit 0 fi diff --git a/scripts/vm/hypervisor/xenserver/copy_vhd_to_secondarystorage.sh b/scripts/vm/hypervisor/xenserver/copy_vhd_to_secondarystorage.sh index 099d66e3d53..cb381409a8f 100755 --- a/scripts/vm/hypervisor/xenserver/copy_vhd_to_secondarystorage.sh +++ b/scripts/vm/hypervisor/xenserver/copy_vhd_to_secondarystorage.sh @@ -52,13 +52,13 @@ localmp=/var/run/cloud_mount/$(uuidgen -r) mkdir -p $localmp if [ $? -ne 0 ]; then - echo "5#cann't make dir $localmp" + echo "5#can't make dir $localmp" exit 0 fi mount $mountpoint $localmp if [ $? -ne 0 ]; then - echo "6#cann't mounbt $mountpoint to $localmp" + echo "6#can't mount $mountpoint to $localmp" exit 0 fi @@ -74,7 +74,7 @@ if [ $type == "nfs" ]; then elif [ $type == "lvmoiscsi" -o $type == "lvm" -o $type == "lvmohba" ]; then lvchange -ay /dev/VG_XenStorage-$sruuid/VHD-$vdiuuid if [ $? -ne 0 ]; then - echo "9#lvm can not make VDI $vdiuuid visiable" + echo "9#lvm can not make VDI $vdiuuid visible" cleanup exit 0 fi