Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
cookbook-webui CHANGELOG
===============

## 1.11.1

- nilsver
- [b13ee97] convert to hash because databag is encrypted now
- [6eeaf6b] first version

## 1.11.0

- Juan Soto
Expand Down
2 changes: 1 addition & 1 deletion resources/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
maintainer_email 'git@redborder.com'
license 'AGPL-3.0'
description 'Installs/Configures cookbook-webui'
version '1.11.0'
version '1.11.1'
10 changes: 5 additions & 5 deletions resources/providers/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@
db_redborder = {}
end

unless db_redborder.empty?
unless db_redborder.to_hash.empty?
db_name_redborder = db_redborder['database']
db_hostname_redborder = db_redborder['hostname']
db_port_redborder = db_redborder['port']
Expand All @@ -244,7 +244,7 @@
db_druid = {}
end

unless db_druid.empty?
unless db_druid.to_hash.empty?
db_name_druid = db_druid['database']
db_hostname_druid = db_druid['hostname']
db_port_druid = db_redborder['port']
Expand All @@ -259,7 +259,7 @@
db_radius = {}
end

unless db_radius.empty?
unless db_radius.to_hash.empty?
db_name_radius = db_radius['database']
db_hostname_radius = db_radius['hostname']
db_port_radius = db_radius['port']
Expand All @@ -273,7 +273,7 @@
webui_secret = {}
end

unless webui_secret.empty?
unless webui_secret.to_hash.empty?
webui_secret_token = webui_secret['secret']
end

Expand Down Expand Up @@ -929,7 +929,7 @@
end

begin
ssh_secrets = data_bag_item('passwords', 'ssh')
ssh_secrets = data_bag_item('rBglobal', 'ssh')
rescue
ssh_secrets = nil
end
Expand Down