been trying to implement the below wget download command using chef remote_file resource. But I couldn't find a way to avoid the re-directions.
wget -N --max-redirect=0 http://www.someurl.com/file.zip
The --max-redirect=0 flag in wget makes sure that there isn't any redirection.
The download url is sometimes redirected to ISP bill reminder page. And chef remote_file resource downloads this bill reminder html page as a zip file.
I can just add the command to a execute resource by wrapping it within
command "wget -N --max-redirect=0 http://www.someurl.com/file.zip"
But is there any chef native way of setting redirection to zero or false without the use of ruby's open_uri or net ?
My chef recipe is
remote_file "#{node['download-zip-path']}/#{zip}" do
source "http://www.someurl.com/#{zip}"
action :create
notifies :run, 'execute[unzip_file]', :delayed
end