I am new to Vagrant as well as Chef. I have the following to install apache and php on Vagrant box using chef. Cookbook contains official opscode cookbooks.
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = "cookbooks"
chef.add_recipe "apt"
chef.add_recipe "apache2"
chef.add_recipe "apache2::mod_php5"
chef.add_recipe "apache2::mod_rewrite"
chef.add_recipe "php"
end
It correctly installs everything including PDO support. The PHP recipe provides access to PEAR/PECL repos. But I can't find a way to install a PECL package.
How do I install a PECL package using this PHP chef?