]> git.openstreetmap.org Git - chef.git/commitdiff
Use configured read only database for note dumps
authorTom Hughes <tom@compton.nu>
Thu, 2 Aug 2018 11:33:45 +0000 (12:33 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 2 Aug 2018 11:33:45 +0000 (12:33 +0100)
cookbooks/planet/templates/default/planet-notes-dump.erb

index 6595104258e474f02cea7f6c09f9c0ec89c12ba9..92ca8b3758ec1313c4f366a515c14d77d5c8b105 100644 (file)
@@ -33,7 +33,7 @@ if [ \! -d ${planet_dir}/notes/ ]
 if [ \! -d ${planet_dir}/notes/${cur_year}/ ]; then mkdir ${planet_dir}/notes/${cur_year}/; fi
 cd ${planet_dir}/notes/${cur_year}/
 
-/usr/bin/python /opt/planet-notes-dump/dump.py --quiet --database openstreetmap --host db-slave --user planetdump --password '<%= @password %>' .${cur_planet_notes}
+/usr/bin/python /opt/planet-notes-dump/dump.py --quiet --database openstreetmap --host <%= node[:web][:readonly_database_host] %> --user planetdump --password '<%= @password %>' .${cur_planet_notes}
 pbzip2 -p6 -9 .${cur_planet_notes}
 
 planet_notes_size=$(du -sb .${cur_planet_notes}.bz2 | awk '{ print $1 }')