Skip to content

Commit

Permalink
Merge branch 'master' of github.com:escapestudios-cookbooks/beanstalkd
Browse files Browse the repository at this point in the history
  • Loading branch information
djoos committed Feb 9, 2015
2 parents 65e335d + a664298 commit fe69796
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Berksfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source 'https://supermarket.getchef.com'

metadata
metadata
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'MIT'
description 'Installs/Configures beanstalkd'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.1.4'
version '0.1.5'

%w( debian ubuntu redhat centos fedora scientific amazon ).each do |os|
supports os
Expand Down
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
require 'rspec/expectations'
require 'chefspec'
require 'chefspec/berkshelf'

Expand Down
3 changes: 2 additions & 1 deletion templates/ubuntu/beanstalkd.erb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
## Defaults for the beanstalkd init script, /etc/init.d/beanstalkd on
## Debian systems. Append ``-b /var/lib/beanstalkd'' for persistent
## storage.
DAEMON_OPTS="<% @opts.each do |k,v| %><%= "-#{k} #{v}" %> <% end %>"
BEANSTALKD_EXTRA="<% @opts.each do |k,v| %><%= "-#{k} #{v}" %> <% end %>"
DAEMON_OPTS=$BEANSTALKD_EXTRA

## Uncomment to enable startup during boot.
<% unless @start_during_boot %>#<% end %>START=yes

0 comments on commit fe69796

Please sign in to comment.