Skip to content

Commit 16d83ac

Browse files
author
John Bellone
committed
Fix failure due to windows? helper not existing.
This only exists when chef-sugar is in the run-list. Its safer just to use the node.platform? method.
1 parent 7a03bb1 commit 16d83ac

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

libraries/consul_config.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def tls?
111111
notifying_block do
112112
directory ::File.dirname(new_resource.path) do
113113
recursive true
114-
unless windows?
114+
unless node.platform?('windows')
115115
owner new_resource.owner
116116
group new_resource.group
117117
mode '0755'
@@ -120,7 +120,7 @@ def tls?
120120
end
121121

122122
file new_resource.path do
123-
unless windows?
123+
unless node.platform?('windows')
124124
owner new_resource.owner
125125
group new_resource.group
126126
mode '0640'

libraries/consul_definition.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def to_json
4545
notifying_block do
4646
directory ::File.dirname(new_resource.path) do
4747
recursive true
48-
unless windows?
48+
unless node.platform?('windows')
4949
owner new_resource.user
5050
group new_resource.group
5151
mode '0755'
@@ -54,7 +54,7 @@ def to_json
5454

5555
file new_resource.path do
5656
content new_resource.to_json
57-
unless windows?
57+
unless node.platform?('windows')
5858
owner new_resource.user
5959
group new_resource.group
6060
mode '0640'

libraries/consul_watch.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def to_json
4343
notifying_block do
4444
directory ::File.dirname(new_resource.path) do
4545
recursive true
46-
unless windows?
46+
unless node.platform?('windows')
4747
owner new_resource.user
4848
group new_resource.group
4949
mode '0755'
@@ -52,7 +52,7 @@ def to_json
5252

5353
file new_resource.path do
5454
content new_resource.to_json
55-
unless windows?
55+
unless node.platform?('windows')
5656
owner new_resource.user
5757
group new_resource.group
5858
mode '0640'

metadata.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
license 'Apache 2.0'
55
description 'Application cookbook which installs and configures Consul.'
66
long_description 'Application cookbook which installs and configures Consul.'
7-
version '2.1.1'
7+
version '2.1.3'
88

99
recipe 'consul::default', 'Installs and configures the Consul service.'
1010
recipe 'consul::client_gem', 'Installs the Consul Ruby client as a gem.'

0 commit comments

Comments
 (0)