File tree 3 files changed +3
-9
lines changed
3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ class ConsulService < Chef::Resource
14
14
include Poise
15
15
provides ( :consul_service )
16
16
include PoiseService ::ServiceMixin
17
- actions ( :create )
18
- default_action ( :create )
19
17
20
18
# @!attribute version
21
19
# @return [String]
@@ -92,7 +90,7 @@ class ConsulService < Chef::Provider
92
90
provides ( :consul_service )
93
91
include PoiseService ::ServiceMixin
94
92
95
- def action_create
93
+ def action_enable
96
94
notifying_block do
97
95
package new_resource . package_name do
98
96
version new_resource . version unless new_resource . version . nil?
@@ -144,11 +142,7 @@ def action_create
144
142
to ::File . join ( source_dir . path , "consul-#{ new_resource . version } " , 'consul' )
145
143
end
146
144
end
147
- end
148
- end
149
145
150
- def action_enable
151
- notifying_block do
152
146
directory new_resource . data_dir do
153
147
recursive true
154
148
owner new_resource . user
Original file line number Diff line number Diff line change 4
4
license 'Apache 2.0'
5
5
description 'Application cookbook which installs and configures Consul.'
6
6
long_description 'Application cookbook which installs and configures Consul.'
7
- version '1.0 .0'
7
+ version '1.1 .0'
8
8
9
9
recipe 'consul::default' , 'Installs, configures and starts the Consul service.'
10
10
Original file line number Diff line number Diff line change 36
36
37
37
node [ 'consul' ] [ 'service' ] . each_pair { |k , v | r . send ( k , v ) }
38
38
subscribes :restart , "consul_config[#{ config . name } ]" , :delayed
39
- action [ :create , :enable ]
39
+ action [ :enable , :start ]
40
40
end
You can’t perform that action at this time.
0 commit comments