Sha256: ffc9d095fb0929a8829b9dd4a43305fd79c470bfa7ee898fbee497a6c212ab4d

Contents?: true

Size: 568 Bytes

Versions: 2

Compression:

Stored size: 568 Bytes

Contents

#
# Cookbook Name:: resque
# Recipe:: install
#

if resque_instance?
  
  file "/usr/local/bin/resque_kill_stale" do
    owner 'root'
    group 'root'
    mode 0755
    if Chef::VERSION == '0.6.0.2'
      source "resque_kill_stale"
    end
  end

  file "/engineyard/bin/resque" do
    owner 'root'
    group 'root'
    mode 0755
    if Chef::VERSION == '0.6.0.2'
      source "resque"
    end
  end

  file "/engineyard/bin/resque-web" do
    owner 'root'
    group 'root'
    mode 0755
    if Chef::VERSION == '0.6.0.2'
      source "resque-web"
    end
  end  

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
eycloud-recipe-resque-1.1.1 recipes/install.rb
eycloud-recipe-resque-1.1.0 recipes/install.rb