Log verbosely what's happening on remote side on deletion

This commit is contained in:
Andrey M. Smirnov 2016-07-28 00:09:05 +00:00
parent 9129020daf
commit b46a79784e
1 changed files with 2 additions and 0 deletions

View File

@ -2128,6 +2128,7 @@ local DELETE_CMD_INPUT=$(cat << 'ENDSSH'
IFS=$'\r\n' IFS=$'\r\n'
for files in $(cat "$FILE_LIST") for files in $(cat "$FILE_LIST")
do do
Logger "Processing file $files" "DEBUG"
if [[ "$files" != "$previous_file/"* ]] && [ "$files" != "" ]; then if [[ "$files" != "$previous_file/"* ]] && [ "$files" != "" ]; then
if [ ! -d "$REPLICA_DIR$DELETE_DIR" ]; then if [ ! -d "$REPLICA_DIR$DELETE_DIR" ]; then
$COMMAND_SUDO mkdir -p "$REPLICA_DIR$DELETE_DIR" $COMMAND_SUDO mkdir -p "$REPLICA_DIR$DELETE_DIR"
@ -2166,6 +2167,7 @@ local DELETE_CMD_INPUT=$(cat << 'ENDSSH'
Logger "Deleting $REPLICA_DIR$files" "NOTICE" Logger "Deleting $REPLICA_DIR$files" "NOTICE"
fi fi
Logger "Full path for deletion: ""$REPLICA_DIR$files" "DEBUG"
if [ $_DRYRUN -ne 1 ]; then if [ $_DRYRUN -ne 1 ]; then
if [ -e "$REPLICA_DIR$files" ]; then if [ -e "$REPLICA_DIR$files" ]; then
$COMMAND_SUDO rm -rf "$REPLICA_DIR$files" $COMMAND_SUDO rm -rf "$REPLICA_DIR$files"