Skip to content

Commit

Permalink
Bugfix for etcd_replicator resource missed windows
Browse files Browse the repository at this point in the history
windows is a supported cookbook platform, need to include it here.
  • Loading branch information
webframp committed Oct 28, 2020
1 parent 9641f60 commit bc42bf1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/etcd_replicator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def check_resource_semantics!
# Set sane platform property default so users generally should not need it
default_ca_cert = value_for_platform_family(
%w(rhel fedora amazon) => '/etc/ssl/certs/ca-bundle.crt',
'debian' => '/etc/ssl/certs/ca-certificates.crt'
'debian' => '/etc/ssl/certs/ca-certificates.crt',
'windows' => ''
)

# Properties correspond to upstream spec attributes
Expand Down

0 comments on commit bc42bf1

Please sign in to comment.