From bee37b7b020cb58fd83e0b5841cd334859073dee Mon Sep 17 00:00:00 2001 From: Matt Amos Date: Wed, 24 Dec 2014 17:56:50 +0000 Subject: [PATCH] Use `%y%m%d` format instead of `%Y-%m-%d` for planet file names. --- cookbooks/planet/templates/default/planetdump.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbooks/planet/templates/default/planetdump.erb b/cookbooks/planet/templates/default/planetdump.erb index ffa829240..34046657e 100644 --- a/cookbooks/planet/templates/default/planetdump.erb +++ b/cookbooks/planet/templates/default/planetdump.erb @@ -7,14 +7,14 @@ set -e # Get the name of the file and the expected pattern file="$1" -pattern="^osm-([0-9]{4})-([0-9]{2}-[0-9]{2})\.dmp$" +pattern="^osm-([0-9]{4})-([0-9]{2})-([0-9]{2})\.dmp$" # Give up now if the file isn't a database dump [[ $file =~ $pattern ]] || exit 0 # Save the year and date from the file name year="${BASH_REMATCH[1]}" -date="${year}-${BASH_REMATCH[2]}" +date="${year:2:2}${BASH_REMATCH[2]}${BASH_REMATCH[3]}" # Check the lock if [ -f /tmp/planetdump.lock ]; then -- 2.43.2