]> git.openstreetmap.org Git - chef.git/commitdiff
Use `%y%m%d` format instead of `%Y-%m-%d` for planet file names.
authorMatt Amos <zerebubuth@gmail.com>
Wed, 24 Dec 2014 17:56:50 +0000 (17:56 +0000)
committerMatt Amos <zerebubuth@gmail.com>
Wed, 24 Dec 2014 17:56:50 +0000 (17:56 +0000)
cookbooks/planet/templates/default/planetdump.erb

index ffa8292409abac1d052b03c4515bb24afc32c3e6..34046657ea2f8af2b77beeb806b9e2cc89f64d1b 100644 (file)
@@ -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