X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/c783d0a11851850072bcd05d6c87afab99fda211..HEAD:/cookbooks/planet/recipes/current.rb diff --git a/cookbooks/planet/recipes/current.rb b/cookbooks/planet/recipes/current.rb index 20c77b732..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[ @@ -27,41 +29,29 @@ template "/usr/local/bin/planet-update" do source "planet-update.erb" owner "root" group "root" - mode 0o755 -end - -template "/usr/local/bin/planet-update-file" do - source "planet-update-file.erb" - owner "root" - group "root" - mode 0o755 + mode "755" end directory "/var/lib/planet" do owner "planet" group "planet" - mode 0o755 + 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 0o644 - not_if { ENV["TEST_KITCHEN"] } + mode "644" + not_if { kitchen? } end -template "/etc/cron.d/planet-update" do - source "planet-update.cron.erb" - owner "root" - group "root" - mode 0o644 -end - -template "/etc/logrotate.d/planet-update" do - source "planet-update.logrotate.erb" - owner "root" - group "root" - mode 0o644 +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