X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aeaa46f3071de018b5c5e0f5678cb5b4082e3ddc..9cb89866d2aea9415aaebc184a5ffd5c467899d5:/cookbooks/planet/recipes/current.rb diff --git a/cookbooks/planet/recipes/current.rb b/cookbooks/planet/recipes/current.rb index c7a4a8f50..517123f59 100644 --- a/cookbooks/planet/recipes/current.rb +++ b/cookbooks/planet/recipes/current.rb @@ -17,6 +17,8 @@ # limitations under the License. # +node.default[:accounts][:users][:planet][:status] = :role + include_recipe "accounts" package %w[ @@ -30,38 +32,26 @@ template "/usr/local/bin/planet-update" do mode "755" end -template "/usr/local/bin/planet-update-file" do - source "planet-update-file.erb" - owner "root" - group "root" - mode "755" -end - directory "/var/lib/planet" do owner "planet" group "planet" mode "755" end -remote_file "/var/lib/planet/planet.pbf" do +remote_file "/var/lib/planet/planet.osh.pbf" do action :create_if_missing - source "https://planet.openstreetmap.org/pbf/planet-latest.osm.pbf" + source "https://planet.openstreetmap.org/pbf/full-history/history-latest.osm.pbf" owner "planet" group "planet" mode "644" - not_if { ENV["TEST_KITCHEN"] } + not_if { kitchen? } end -cron_d "planet-update" do - minute "17" - hour "1" - user "root" - command "/usr/local/bin/planet-update" -end - -template "/etc/logrotate.d/planet-update" do - source "planet-update.logrotate.erb" - owner "root" - group "root" - mode "644" +systemd_service "planet-update" do + description "Planet file update" + type "oneshot" + exec_start "/usr/local/bin/planet-update" + user "planet" + sandbox :enable_network => true + read_write_paths "/var/lib/planet" end