databox-cookbook
databox-cookbook copied to clipboard
Install specified version of postgresql
Is there any way to install specified version of postgresql (which are not in default repository)?
since databox is depends on postgresql cookbook you can do so in your chef config
chef.json = {
postgresql: {
version: '9.3'
}
}
thanks!