Skip to content

Commit

Permalink
Manage rabbitmq ssl directory permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
Olson, Jesse B authored and majormoses committed Sep 12, 2017
1 parent 2ddf4bb commit d61da12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion recipes/rabbitmq.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
ssl_directory = "/etc/rabbitmq/ssl"

directory ssl_directory do
mode '0755'
recursive true
end

Expand Down Expand Up @@ -57,7 +58,9 @@
node.override["rabbitmq"]["ssl_#{item}"] = path
end

directory File.join(ssl_directory, "client")
directory File.join(ssl_directory, "client") do
mode '0755'
end

%w[
cert
Expand Down

0 comments on commit d61da12

Please sign in to comment.