1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-12 08:58:17 +03:00

feature #2097: Delete sometimes in TM shared has to deal with directories

This commit is contained in:
Tino Vazquez 2013-06-19 17:01:27 +02:00 committed by Ruben S. Montero
parent 05d2cdd42f
commit 33534d08f8

View File

@ -43,6 +43,6 @@ DST_PATH=`arg_path $DST`
DST_HOST=`arg_host $DST`
log "Deleting $DST_PATH"
ssh_exec_and_log $DST_HOST "rm -f $DST_PATH" "Error deleting $DST_PATH"
ssh_exec_and_log $DST_HOST "rm -rf $DST_PATH" "Error deleting $DST_PATH"
exit 0