]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/osmosis/recipes/default.rb
Fix incorrect alert annotation
[chef.git] / cookbooks / osmosis / recipes / default.rb
index ff38e90e0465da8d84b61c710593585bf667b6b7..40f0be590134e5f348ec4e23293c97ed09027e5d 100644 (file)
@@ -17,9 +17,6 @@
 # limitations under the License.
 #
 
-include_recipe "chef"
-
-package "unzip"
 package "default-jre"
 
 cache_dir = Chef::Config[:file_cache_path]
@@ -52,13 +49,13 @@ remote_file "#{cache_dir}/#{osmosis_package}" do
   backup false
 end
 
-execute "#{cache_dir}/#{osmosis_package}" do
+archive_file "#{cache_dir}/#{osmosis_package}" do
   action :nothing
-  command "unzip -q #{cache_dir}/#{osmosis_package}"
-  cwd osmosis_directory
-  user "root"
+  destination osmosis_directory
+  overwrite true
+  owner "root"
   group "root"
-  subscribes :run, "remote_file[#{cache_dir}/#{osmosis_package}]"
+  subscribes :extract, "remote_file[#{cache_dir}/#{osmosis_package}]"
 end
 
 link "/usr/local/bin/osmosis" do