mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 12:27:35 -05:00
14 lines
357 B
Ruby
14 lines
357 B
Ruby
old_pkgs =
|
|
if(::File.exist?(node[:omnibus_updater][:cache_dir]))
|
|
Dir.glob(File.join(node[:omnibus_updater][:cache_dir], 'chef*')).find_all do |file|
|
|
!file.include?(node[:omnibus_updater][:version].to_s) && !file.scan(/\.(rpm|deb)$/).empty?
|
|
end
|
|
else
|
|
[]
|
|
end
|
|
|
|
old_pkgs.each do |filename|
|
|
file filename do
|
|
action :delete
|
|
end
|
|
end
|