diff --git a/chef/cookbooks/bootstrap/bootstrap.json b/chef/cookbooks/bootstrap/bootstrap.json new file mode 100644 index 000000000..328415e15 --- /dev/null +++ b/chef/cookbooks/bootstrap/bootstrap.json @@ -0,0 +1 @@ +{"recipes": ["bootstrap::default" ] } diff --git a/chef/cookbooks/bootstrap/recipes/default.rb b/chef/cookbooks/bootstrap/recipes/default.rb new file mode 100644 index 000000000..aaf725642 --- /dev/null +++ b/chef/cookbooks/bootstrap/recipes/default.rb @@ -0,0 +1,6 @@ +execute "bundler deps" do + command "yum install -y cpio" +end +execute "nokogiri deps" do + command "yum install -y libxml2-devel libxslt-devel" +end