Skip to content
Snippets Groups Projects
Commit 80a51a3e authored by intrigeri's avatar intrigeri
Browse files

Do not warn when rsync exits with status 0.

parent d3d71fd3
No related branches found
No related tags found
No related merge requests found
......@@ -1103,6 +1103,9 @@ function check_rsync_exit_status {
fi
case $1 in
0)
return
;;
1|2|3|4|5|6|10|11|12|13|14|21)
fatal "Rsync error $1 when trying to transfer $SECTION"
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment