From 359fb2757c41a8b92a780673d6d2739b6fdac660 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 10 Mar 2014 23:05:29 -0300 Subject: Try to get the newest if there's no backup for the current date --- lib/hydra/backup | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/hydra/backup') 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 } -- cgit v1.2.3