Skip to content

Commit

Permalink
Merge pull request #247 from redBorder/development
Browse files Browse the repository at this point in the history
release 4.4.5
  • Loading branch information
pperezredborder authored Nov 11, 2024
2 parents 567291f + 666fe16 commit 4723b2f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
cookbook-rb-manager CHANGELOG
===============

## 4.4.5

- Daniel Castro
- [77547bd] create sudoers file before redborder-monitor install

## 4.4.4

- ptorresred
Expand Down
2 changes: 1 addition & 1 deletion resources/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
maintainer_email '[email protected]'
license 'AGPL-3.0'
description 'Installs/Configures redborder manager'
version '4.4.4'
version '4.4.5'

depends 'rb-common'
depends 'chef-server'
Expand Down
18 changes: 9 additions & 9 deletions resources/recipes/configure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@
end
end

# Sudoers
template '/etc/sudoers.d/redborder-manager' do
source 'redborder-manager.erb'
owner 'root'
group 'root'
mode '0440'
retries 2
end

consul_config 'Configure Consul Server' do
cdomain node['redborder']['cdomain']
dns_local_ip node['consul']['dns_local_ip']
Expand Down Expand Up @@ -667,15 +676,6 @@
end
end

# Sudoers
template '/etc/sudoers.d/redborder-manager' do
source 'redborder-manager.erb'
owner 'root'
group 'root'
mode '0440'
retries 2
end

# Pending Changes..
# pending_changes==0 -> has changes to apply at next chef-client run
# pending_changes==1 -> chef-client has to run once
Expand Down

0 comments on commit 4723b2f

Please sign in to comment.