cloudposse / terraform-aws-efs-backup

Terraform module designed to easily backup EFS filesystems to S3 using DataPipeline
https://cloudposse.com/accelerate
Apache License 2.0
43 stars 33 forks source link

Properly Handle AWS S3 Sync Exit Codes #11

Closed aknysh closed 7 years ago

aknysh commented 7 years ago

What

Why

warning: Skipping file /backup/jobs/WWWWW/builds/lastSuccessfulBuild. File does not exist. warning: Skipping file /backup/jobs/WWWWW/builds/lastUnstableBuild. File does not exist. warning: Skipping file /backup/jobs/WWWWW/builds/lastFailedBuild. File does not exist. warning: Skipping file /backup/jobs/WWWWW/builds/lastUnsuccessfulBuild. File does not exist. warning: Skipping file /backup/jobs/WWWWW/builds/lastStableBuild. File does not exist.

Return code 2 can mean at least one or more files marked for transfer were skipped during the transfer process. However, all other files marked for transfer were successfully transferred. Files that are skipped during the transfer process include: files that do not exist, files that are character special devices, block special device, FIFO's, or sockets, and files that the user cannot read from.

References