Skip to content

Commit 2c657f3

Browse files
author
John Bellone
committed
Removes the :create and :delete actions from service.
This is after we find a lot of spew in the logs. @coderanger says that this is the correct usage.
1 parent 5fcd783 commit 2c657f3

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

libraries/consul_service.rb

+1-7
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ class ConsulService < Chef::Resource
1414
include Poise
1515
provides(:consul_service)
1616
include PoiseService::ServiceMixin
17-
actions(:create)
18-
default_action(:create)
1917

2018
# @!attribute version
2119
# @return [String]
@@ -92,7 +90,7 @@ class ConsulService < Chef::Provider
9290
provides(:consul_service)
9391
include PoiseService::ServiceMixin
9492

95-
def action_create
93+
def action_enable
9694
notifying_block do
9795
package new_resource.package_name do
9896
version new_resource.version unless new_resource.version.nil?
@@ -144,11 +142,7 @@ def action_create
144142
to ::File.join(source_dir.path, "consul-#{new_resource.version}", 'consul')
145143
end
146144
end
147-
end
148-
end
149145

150-
def action_enable
151-
notifying_block do
152146
directory new_resource.data_dir do
153147
recursive true
154148
owner new_resource.user

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 '1.0.0'
7+
version '1.1.0'
88

99
recipe 'consul::default', 'Installs, configures and starts the Consul service.'
1010

recipes/default.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636

3737
node['consul']['service'].each_pair { |k, v| r.send(k, v) }
3838
subscribes :restart, "consul_config[#{config.name}]", :delayed
39-
action [:create, :enable]
39+
action [:enable, :start]
4040
end

0 commit comments

Comments
 (0)