Commit 79ec7c33c6adbc0f8fefdf5d37ff1f4c45ee20dd

Authored by Earth Ugat
1 parent 1a555b88

Bump to v0.1.2. Fix db_map attribute bug.

  1 +# 0.1.2
  2 +
  3 +Fix default recipe bug where db_map attribute stays empty
  4 +
1 # 0.1.1 5 # 0.1.1
2 6
3 Add the needed recipe reload_from_s3 7 Add the needed recipe reload_from_s3
@@ -4,7 +4,7 @@ maintainer_email 'sysadmin@chromedia.com' @@ -4,7 +4,7 @@ maintainer_email 'sysadmin@chromedia.com'
4 license 'Apache License' 4 license 'Apache License'
5 description 'Simplifies setup of MariaDB in Chromedia.' 5 description 'Simplifies setup of MariaDB in Chromedia.'
6 long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) 6 long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
7 -version '0.1.1' 7 +version '0.1.2'
8 8
9 { 9 {
10 'mariadb' => '0.2.12', 10 'mariadb' => '0.2.12',
@@ -54,7 +54,7 @@ con = { @@ -54,7 +54,7 @@ con = {
54 :username => 'root', 54 :username => 'root',
55 :password => node['mariadb']['server_root_password'] 55 :password => node['mariadb']['server_root_password']
56 } 56 }
57 -node.default['cfe-mariadb']['db_map'].each do |dbx| 57 +node['cfe-mariadb']['db_map'].each do |dbx|
58 58
59 if dbx.is_a?(Array) 59 if dbx.is_a?(Array)
60 dbx_name = dbx[0] 60 dbx_name = dbx[0]