Fix fauxhai platform versions for suse

Change-Id: I9495ea6b1775a454d4d98e3d430e9325a72fc4b9
Partial-Bug: #1344199
This commit is contained in:
Mark Vanderwiel 2014-07-18 12:53:52 -05:00
parent 36d718d148
commit bc31d53d6a
2 changed files with 6 additions and 5 deletions

View File

@ -5,6 +5,7 @@ This file is used to list changes made in each version of the cookbook-openstack
## 9.0.1
* Allow setting passwords via attributes by using the get_password method
* bump berkshelf to 2.0.18 to allow Supermarket support
* fix fauxhai version for suse
## 9.0.0
* Initial release of cookbook-openstack-database for Icehouse

View File

@ -4,18 +4,18 @@ require 'chefspec'
require 'chefspec/berkshelf'
require 'chef/application'
::LOG_LEVEL = :fatal
::SUSE_OPTS = {
LOG_LEVEL = :fatal
SUSE_OPTS = {
platform: 'suse',
version: '11.03',
version: '11.3',
log_level: ::LOG_LEVEL
}
::REDHAT_OPTS = {
REDHAT_OPTS = {
platform: 'redhat',
version: '6.5',
log_level: ::LOG_LEVEL
}
::UBUNTU_OPTS = {
UBUNTU_OPTS = {
platform: 'ubuntu',
version: '12.04',
log_level: ::LOG_LEVEL