1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

SSH TM drivers compatibility with VMware

This commit is contained in:
Tino Vazquez 2012-03-09 18:11:53 +01:00
parent 961e368116
commit c88fdb617a
2 changed files with 2 additions and 2 deletions

View File

@ -58,6 +58,6 @@ http://*)
*)
log "Cloning $SRC in $DST_PATH"
exec_and_log "$SCP $SRC $DST" "Error copying $SRC to $DST"
exec_and_log "$SCP -r $SRC $DST" "Error copying $SRC to $DST"
;;
esac

View File

@ -49,6 +49,6 @@ SRC_HOST=`arg_host $SRC`
# Move the image back to the datastore
#-------------------------------------------------------------------------------
log "Moving $SRC_PATH to datastore as $DST_PATH"
exec_and_log "$SCP $SRC $DST" "Error copying $SRC to $DST"
exec_and_log "$SCP -r $SRC $DST" "Error copying $SRC to $DST"
exit 0