I get the following error when starting vagrant up --provision to configure my development environment using a firewall ...
==> default: [2014-12-08T20:33:51+00:00] ERROR: remote_file[http://nginx.org/download/nginx-1.7.8.tar.gz] (nginx::source line 58) had an error: Chef::Exceptions::ChecksumMismatch: Checksum on resource (0510af) does not match checksum on content (12f75e)
My JSON chef has the following for nginx:
"nginx": { "version": "1.7.8", "user": "deploy", "init_style": "init", "modules": [ "http_stub_status_module", "http_ssl_module", "http_gzip_static_module" ], "passenger": { "version": "4.0.53", "gem_binary": "/home/vagrant/.rbenv/shims/gem" }, "configure_flags": [ "--add-module=/home/vagrant/.rbenv/versions/2.1.5/lib/ruby/gems/2.1.0/gems/passenger-3.0.18/ext/nginx" ], "gzip_types": [ "text/plain", "text/html", "text/css", "text/xml", "text/javascript", "application/json", "application/x-javascript", "application/xml", "application/xml+rss" ]}
and Cheffile has the following cookbook:
cookbook 'nginx'
How to resolve checksum mismatch?
vagrant nginx centos chef
whargrove
source share