Skip to content

Commit

Permalink
Merge pull request #181 from engineyard/bug/TEY-207-db-ssl-quick-run-fix
Browse files Browse the repository at this point in the history
[TEY-207] moves db-ssl recipe call outside of postgres if statement
  • Loading branch information
mushyy authored Jun 11, 2020
2 parents 1dfa7b7 + b68b2ea commit 53f7cfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cookbooks/ey-init/recipes/integrate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
when /^db/
if node.engineyard.environment['db_stack_name'][/^postgres/]
include_recipe 'ey-backup::postgres'
is_db_master = ['db_master'].include?(node.dna['instance_role'])
include_recipe "db-ssl::setup" if is_db_master
end
is_db_master = ['db_master'].include?(node.dna['instance_role'])
include_recipe "db-ssl::setup" if is_db_master
end
include_recipe "ssh_keys" # CC-691 - update ssh whitelist after takeovers

0 comments on commit 53f7cfb

Please sign in to comment.