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

Fix for wrong FS_TYPE check

This commit is contained in:
Tino Vazquez 2013-10-31 16:32:04 +01:00
parent 19acb3fd9b
commit e0c70c49fd

View File

@ -103,7 +103,7 @@ if ! is_cdrom; then
exec_and_log "ssh_make_path $DST_HOST $DST" \
"Cannot create $DST in $DST_HOST"
if [ -n $CLONE_FSTYPE ]; then
if [ ! -z $CLONE_FSTYPE ]; then
CLONE_FSTYPE="-d $CLONE_FSTYPE"
fi