projects
/
chef.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8a807d
)
Use `%y%m%d` format instead of `%Y-%m-%d` for planet file names.
author
Matt Amos
<zerebubuth@gmail.com>
Wed, 24 Dec 2014 17:56:50 +0000
(17:56 +0000)
committer
Matt Amos
<zerebubuth@gmail.com>
Wed, 24 Dec 2014 17:56:50 +0000
(17:56 +0000)
cookbooks/planet/templates/default/planetdump.erb
patch
|
blob
|
history
diff --git
a/cookbooks/planet/templates/default/planetdump.erb
b/cookbooks/planet/templates/default/planetdump.erb
index ffa8292409abac1d052b03c4515bb24afc32c3e6..34046657ea2f8af2b77beeb806b9e2cc89f64d1b 100644
(file)
--- 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