]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/planet/recipes/current.rb
blogs: fix build in test
[chef.git] / cookbooks / planet / recipes / current.rb
index 919956d891c870cdfd22efeb9205bbe33d2ac9cb..517123f5913219f97a73d9402c419e81415bdac7 100644 (file)
@@ -1,8 +1,8 @@
 #
 #
-# Cookbook Name:: planet
+# Cookbook:: planet
 # Recipe:: current
 #
 # Recipe:: current
 #
-# Copyright 2018, OpenStreetMap Foundation
+# Copyright:: 2018, OpenStreetMap Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # limitations under the License.
 #
 
 # limitations under the License.
 #
 
+node.default[:accounts][:users][:planet][:status] = :role
+
+include_recipe "accounts"
+
 package %w[
   pyosmium
 ]
 package %w[
   pyosmium
 ]
@@ -25,40 +29,29 @@ template "/usr/local/bin/planet-update" do
   source "planet-update.erb"
   owner "root"
   group "root"
   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"
 end
 
 directory "/var/lib/planet" do
   owner "planet"
   group "planet"
-  mode 0o755
+  mode "755"
 end
 
 end
 
-remote_file "/var/lib/planet/planet.pbf" do
+remote_file "/var/lib/planet/planet.osh.pbf" do
   action :create_if_missing
   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"
   owner "planet"
   group "planet"
-  mode 0o644
+  mode "644"
+  not_if { kitchen? }
 end
 
 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
 end