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 5 # 0.1.1
2 6
3 7 Add the needed recipe reload_from_s3
... ...
... ... @@ -4,7 +4,7 @@ maintainer_email 'sysadmin@chromedia.com'
4 4 license 'Apache License'
5 5 description 'Simplifies setup of MariaDB in Chromedia.'
6 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 10 'mariadb' => '0.2.12',
... ...
... ... @@ -54,7 +54,7 @@ con = {
54 54 :username => 'root',
55 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 59 if dbx.is_a?(Array)
60 60 dbx_name = dbx[0]
... ...