X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/88bb26b033774548fa76da9170cbefd4536f0a5f..9cb89866d2aea9415aaebc184a5ffd5c467899d5:/cookbooks/planet/recipes/current.rb diff --git a/cookbooks/planet/recipes/current.rb b/cookbooks/planet/recipes/current.rb index 9f951df53..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,13 +32,6 @@ 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" @@ -49,19 +44,14 @@ remote_file "/var/lib/planet/planet.osh.pbf" do owner "planet" group "planet" mode "644" - not_if { ENV["TEST_KITCHEN"] } + not_if { kitchen? } end -cron_d "planet-update" do - minute "37" - 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