mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 23:21:07 +08:00
f3bcbd8bc3
This introduces two configuration management runs into the Vagrant provisioning phase. The first chef-solo run ensures that a current version of chef is installed using the omnibus updater. The second chef-solo run installs vim and phantomjs. Much more is possible, this is a proof of concept. Cookbooks are stored in the chef directory, and managed by librarian-chef, which is like a bundler for cookbooks. Chef is run when VM is first downloaded and booted, but not on subsequent halt/up cycles. To force chef to run again, use `vagrant provision`.
15 lines
352 B
Ruby
15 lines
352 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]) && !file.scan(/\.(rpm|deb)$/).empty?
|
|
end
|
|
else
|
|
[]
|
|
end
|
|
|
|
old_pkgs.each do |filename|
|
|
file filename do
|
|
action :delete
|
|
end
|
|
end
|