Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.9.0 #141

Merged
merged 3 commits into from
May 24, 2024
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,5 +1,11 @@
cookbook-rb-manager CHANGELOG
===============

## 1.9.0

- Miguel Negrón
- [ef94e3c] Add configure common cookbook call (#140)

## 1.8.0
- David Vanhoucke
- [c2df76a] add postfix service
Expand Down
3 changes: 2 additions & 1 deletion resources/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
license 'All rights reserved'
description 'Installs/Configures redborder manager'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.8.0'
version '1.9.0'

depends 'rb-common'
depends 'chef-server'
depends 'zookeeper'
depends 'kafka'
Expand Down
4 changes: 4 additions & 0 deletions resources/recipes/configure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
# manager services
manager_services = manager_services()

rb_common_config "Configure common" do
action :configure
end

rb_selinux_config "Configure Selinux" do
if shell_out("getenforce").stdout.chomp == "Disabled"
action :remove
Expand Down
Loading