diff options
-rw-r--r-- | lib/hydra/backup | 10 |
1 files changed, 10 insertions, 0 deletions
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 } |