diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-12-13 19:24:29 -0800 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2014-12-13 19:24:29 -0800 |
commit | 4586aa853ad9c65dc66b60fe89e57aa470e76cc3 (patch) | |
tree | c54aa3881fdf47457652f0c112b142e29e02f48c /kitchen-tests | |
parent | 16b1b5f977f6858d914d5b1fe748b4d6a4cff7f4 (diff) | |
download | chef-4586aa853ad9c65dc66b60fe89e57aa470e76cc3.tar.gz |
Lock version of database cookbookjdm/kitchen-tests
A release of mysql-chef_gem broke the database cookbook because
it removed the default recipe which the database cookbook was using.
Since the database cookbook did not lock versions of mysql-chef_gem,
it pulls the latest mysql-chef_gem cookbook and fails.
An update to the database cookbook was released to fix this, however
Berks dep solving is getting the latest mysql-chef_gem and an older database
cookbook for the webapp test cookbook.
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/cookbooks/webapp/metadata.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kitchen-tests/cookbooks/webapp/metadata.rb b/kitchen-tests/cookbooks/webapp/metadata.rb index ecfb419953..c26ad23979 100644 --- a/kitchen-tests/cookbooks/webapp/metadata.rb +++ b/kitchen-tests/cookbooks/webapp/metadata.rb @@ -7,6 +7,6 @@ long_description 'Installs/Configures webapp' version '0.1.0' depends 'apache2' -depends 'database' +depends 'database', '~> 2.3.1' depends 'mysql' depends 'php' |