From: Silvio Rhatto Date: Tue, 11 Mar 2014 02:05:29 +0000 (-0300) Subject: Try to get the newest if there's no backup for the current date X-Git-Tag: 0.2.2~56 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=359fb2757c41a8b92a780673d6d2739b6fdac660;p=hydra.git Try to get the newest if there's no backup for the current date --- diff --git a/lib/hydra/backup b/lib/hydra/backup index e48f904..3f2d91f 100644 --- a/lib/hydra/backup +++ b/lib/hydra/backup @@ -17,6 +17,16 @@ function hydra_backup_environment_local_website { RESTOREDIR="$BACKUPDIR/`date +%Y%m%d`" fi + # Try to get the newest if there's no backup for the current date + if [ ! -e "$RESTOREDIR/$SITE.tar.bz2" ]; then + RESTOREDIR="$(find $BACKUPDIR -name "$SITE.tar.bz2" | sort -n | tail -n 1)" + + if [ -z "$RESTOREDIR" ]; then + echo "Backup not found for $DATE." + exit 1 + fi + fi + DB_DUMP_BASE="$RESTOREDIR" mkdir -p $RESTOREDIR }