mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05: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
528 B
Ruby
15 lines
528 B
Ruby
name "build-essential"
|
|
maintainer "Opscode, Inc."
|
|
maintainer_email "cookbooks@opscode.com"
|
|
license "Apache 2.0"
|
|
description "Installs C compiler / build tools"
|
|
version "1.3.4"
|
|
recipe "build-essential", "Installs packages required for compiling C software from source."
|
|
|
|
%w{ fedora redhat centos ubuntu debian amazon suse scientific oracle smartos}.each do |os|
|
|
supports os
|
|
end
|
|
|
|
supports "mac_os_x", ">= 10.6.0"
|
|
supports "mac_os_x_server", ">= 10.6.0"
|
|
suggests "pkgin"
|