discourse/chef/cookbooks/phantomjs/metadata.rb
Elliot Murphy f3bcbd8bc3 Use chef-solo to install phantomjs into Vagrant VM.
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`.
2013-02-07 14:09:57 -05:00

19 lines
517 B
Ruby

name 'phantomjs'
maintainer 'CustomInk'
maintainer_email 'webops@customink.com'
license 'Apache 2.0'
description 'Installs/Configures phantomjs'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.0.10'
recipe 'phantomjs::default', 'Install phantomjs binary'
%w(amazon centos debian fedora oracle rhel scientific ubuntu).each do |os|
supports os
end
attribute 'version',
:display_name => 'Version',
:description => 'The Version of phantomjs to install',
:default => '1.7.0'