1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/examples/chef/cookbooks/sidekiq/templates/default/sidekiq.yml.erb
jc00ke d9793e09b6 Updating chef recipe
Pulled in some updates from the project that spawned the cookbook.
2012-03-21 20:44:21 -07:00

22 lines
422 B
Text

---
<% if @verbose %>
:verbose: <%= @verbose %>
<% end %>
<% if @environment %>
:environment: <%= @environment %>
<% end %>
<% if @require %>
:require: <%= @require %>
<% end %>
<% if @pidfile %>
:pidfile: <%= @pidfile %>
<% end %>
<% if @concurrency %>
:concurrency: <%= @concurrency %>
<% end %>
<% if @queues %>
:queues:
<% @queues.each do |name, priority| %>
- [<%= name %>, <%= priority %>]
<% end %>
<% end %>