Skip to content

Commit 257a086

Browse files
committed
Merge pull request #263 from visioncritical/nssm-param-reset
Added ability to remove nssm parameters
2 parents 19b551b + aac210a commit 257a086

File tree

6 files changed

+28
-14
lines changed

6 files changed

+28
-14
lines changed

attributes/default.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
default['consul']['config']['bag_item'] = 'consul'
1616

1717
default['consul']['config']['path'] = join_path config_prefix_path, 'consul.json'
18-
default['consul']['config']['data_dir'] = join_path data_prefix_path, 'data'
18+
default['consul']['config']['data_dir'] = data_prefix_path
1919
default['consul']['config']['ca_file'] = join_path config_prefix_path, 'ssl', 'CA', 'ca.crt'
2020
default['consul']['config']['cert_file'] = join_path config_prefix_path, 'ssl', 'certs', 'consul.crt'
2121
default['consul']['config']['key_file'] = join_path config_prefix_path, 'ssl', 'private', 'consul.key'
@@ -33,6 +33,8 @@
3333
default['consul']['diplomat_version'] = nil
3434

3535
default['consul']['service']['config_dir'] = join_path config_prefix_path, 'conf.d'
36+
37+
default['consul']['service']['install_path'] = windows? ? config_prefix_path : '/srv'
3638
default['consul']['service']['install_method'] = 'binary'
3739
default['consul']['service']['binary_url'] = "https://releases.hashicorp.com/consul/%{version}/%{filename}.zip" # rubocop:disable Style/StringLiterals
3840

libraries/consul_service.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ConsulService < Chef::Resource
2727

2828
# @!attribute install_path
2929
# @return [String]
30-
attribute(:install_path, kind_of: String, default: lazy { windows? ? config_prefix_path : '/srv' })
30+
attribute(:install_path, kind_of: String, default: lazy { node['consul']['service']['install_path'] })
3131

3232
# @!attribute config_file
3333
# @return [String]
@@ -81,7 +81,6 @@ class ConsulService < Chef::Provider
8181
include ConsulCookbook::Helpers
8282

8383
def action_enable
84-
new_resource.notifies(:reload, new_resource, :delayed)
8584
notifying_block do
8685
case new_resource.install_method
8786
when 'package'

libraries/consul_service_windows.rb

+20-7
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,13 @@ def action_enable
3131
Chef::Application.fatal!('The Consul Service provider for Windows only supports the binary install_method at this time')
3232
end
3333

34-
%W{#{new_resource.data_dir}
35-
#{new_resource.config_dir}
36-
#{::File.dirname(new_resource.nssm_params['AppStdout'])}
37-
#{::File.dirname(new_resource.nssm_params['AppStderr'])}}.uniq.each do |dirname|
34+
directories = %W{#{new_resource.data_dir}
35+
#{new_resource.config_dir}
36+
#{::File.dirname(new_resource.nssm_params['AppStdout'])}
37+
#{::File.dirname(new_resource.nssm_params['AppStderr'])}}.uniq.compact
38+
39+
# ::File.dirname '' == '.'
40+
directories.delete_if { |i| i.eql? '.' }.each do |dirname|
3841
directory dirname do
3942
recursive true
4043
# owner new_resource.user
@@ -46,17 +49,20 @@ def action_enable
4649
nssm 'consul' do
4750
action :install
4851
program join_path(new_resource.install_path, 'consul.exe')
49-
params new_resource.nssm_params
52+
# Don't try and set empty parameters
53+
params new_resource.nssm_params.select { |_k, v| v != '' }
5054
args command(new_resource.config_file, new_resource.config_dir)
55+
not_if { nssm_service_installed? }
5156
end
5257

5358
if nssm_service_installed?
5459
# The nssm resource does not check param values after they've been set
5560
mismatch_params = check_nssm_params
5661
unless mismatch_params.empty?
5762
mismatch_params.each do |k, v|
63+
action = v.eql?('') ? "reset consul #{k}" : "set consul #{k} #{v}"
5864
batch "Set nssm parameter - #{k}" do
59-
code "#{nssm_exe} set consul #{k} #{v}"
65+
code "#{nssm_exe} #{action}"
6066
notifies :run, 'batch[Trigger consul restart]', :delayed
6167
end
6268
end
@@ -67,7 +73,7 @@ def action_enable
6773
end
6874
# Check if the service is running, but don't bother if we're already
6975
# changing some nssm parameters
70-
unless nssm_service_running? && mismatch_params.empty?
76+
unless nssm_service_status?(%w{SERVICE_RUNNING}) && mismatch_params.empty?
7177
batch 'Trigger consul restart' do
7278
action :run
7379
code "#{nssm_exe} restart consul"
@@ -85,6 +91,13 @@ def action_restart
8591

8692
def action_disable
8793
notifying_block do
94+
# nssm resource doesn't stop the service before it removes it
95+
batch 'Stop consul' do
96+
action :run
97+
code "#{nssm_exe} stop consul"
98+
only_if { nssm_service_installed? && nssm_service_status?(%w{SERVICE_RUNNING SERVICE_PAUSED}) }
99+
end
100+
88101
nssm 'consul' do
89102
action :remove
90103
end

libraries/helpers.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ def nssm_service_installed?
133133
exit_code == 0 ? true : false
134134
end
135135

136-
def nssm_service_running?
137-
shell_out!(%{"#{nssm_exe}" status consul}, returns: [0]).stdout.delete("\0").strip.eql? 'SERVICE_RUNNING'
136+
def nssm_service_status?(expected_status)
137+
expected_status.include? shell_out!(%{"#{nssm_exe}" status consul}, returns: [0]).stdout.delete("\0").strip
138138
end
139139

140140
# Returns a hash of mismatched params

test/spec/libraries/consul_service_linux_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
recipe 'consul::default'
1010

1111
it { expect(chef_run).to create_directory('/etc/consul/conf.d') }
12-
it { is_expected.to create_directory('/var/lib/consul/data') }
12+
it { is_expected.to create_directory('/var/lib/consul') }
1313
end
1414
end

test/spec/libraries/consul_service_windows_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
recipe 'consul::default'
2222

2323
it { expect(chef_run).to create_directory('C:\Program Files\consul\conf.d') }
24-
it { is_expected.to create_directory('C:\Program Files\consul\data') }
24+
it { is_expected.to create_directory('C:\Program Files\consul') }
2525
it { expect(chef_run).to install_nssm('consul').with(
2626
program: 'C:\Program Files\consul\consul.exe',
2727
args: 'agent -config-file="""C:\Program Files\consul\consul.json""" -config-dir="""C:\Program Files\consul\conf.d"""'

0 commit comments

Comments
 (0)