Skip to content

Commit

Permalink
Fix the run_user and run_group attributes.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbellone committed Feb 13, 2015
1 parent faeb4d8 commit d8ba236
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
end

consul_config node['consul']['config_dir'] do
user node['consul']['service_user']
group node['consul']['service_group']
run_user node['consul']['service_user']
run_group node['consul']['service_group']
end

consul_client Chef::Consul.install_path(node) do
filename Chef::Consul.remote_filename(node)
url Chef::Consul.remote_url(node)
checksum Chef::Consul.remote_checksum(node)
version node['consul']['version']
user node['consul']['service_user']
group node['consul']['service_group']
run_user node['consul']['service_user']
run_group node['consul']['service_group']
end

consul_service 'consul' do
Expand Down

0 comments on commit d8ba236

Please sign in to comment.