Skip to content

Commit

Permalink
fix unrelated breakage on master
Browse files Browse the repository at this point in the history
from #94
  • Loading branch information
lamont-granquist committed Apr 9, 2019
1 parent b30029e commit 0e8aa7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/helpers_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def etcd_daemon_opts
opts << "-listen-peer-urls=#{new_resource.listen_peer_urls}" unless new_resource.listen_peer_urls.nil?
opts << "-max-snapshots=#{new_resource.max_snapshots}" unless new_resource.max_snapshots.nil?
opts << "-max-wals=#{new_resource.max_wals}" unless new_resource.max_wals.nil?
opts << "-peer-cert-allowed-cn=#{new_resource.peer_cert_allowed_cn}" unless new_resource.peer_cert_allowed_cn?
opts << "-peer-cert-allowed-cn=#{new_resource.peer_cert_allowed_cn}" unless new_resource.peer_cert_allowed_cn.nil?
opts << "-peer-cert-file=#{new_resource.peer_cert_file}" unless new_resource.peer_cert_file.nil?
opts << '-peer-client-cert-auth=true' if new_resource.peer_client_cert_auth == true
opts << "-peer-key-file=#{new_resource.peer_key_file}" unless new_resource.peer_key_file.nil?
Expand Down

0 comments on commit 0e8aa7f

Please sign in to comment.