This cookbook requires the the 'windows' cookbook
This cookbook can be used as a standalone install or as part of a role
The following attributes exist default[:filezilla][:url] - source default[:filezilla][:file] - for not_if condition
filezilla::default
windows_package "FileZilla_3.7.3" do source node[:filezilla][:url] action :install not_if {::File.exists?(node[:filezilla][:file])} not_if {reboot_pending?} end
windows_reboot 60 do reason 'reboot needed' only_if {reboot_pending?} end
Author:: Todd Pigram ([email protected])