Skip to content

Commit

Permalink
[COOK-3706] Fix permission of passenger.load
Browse files Browse the repository at this point in the history
Signed-off-by: Sean OMeara <someara@opscode.com>
  • Loading branch information
chulkilee authored and Sean OMeara committed Nov 4, 2013
1 parent a41537d commit 36732ef
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions Gemfile
@@ -1,3 +1,12 @@
source :rubygems
source 'https://rubygems.org'

gem 'test-kitchen', '< 1.0'
gem 'strainer'
gem 'berkshelf', '~> 2.0'
gem 'chefspec', '~> 3.0'
gem 'foodcritic', '~> 3.0'
gem 'rubocop', '~> 0.14'

group :integration do
gem 'test-kitchen', '~> 1.0.0.beta.4'
gem 'kitchen-vagrant', '~> 0.11'
end
2 changes: 1 addition & 1 deletion recipes/mod_rails.rb
Expand Up @@ -30,7 +30,7 @@
source 'passenger.load.erb'
owner 'root'
group 'root'
mode 0755
mode 0644
end
end

Expand Down

2 comments on commit 36732ef

@chulkilee
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only the change in recipes/mod_rails.rb came from #18

@someara
Copy link

@someara someara commented on 36732ef Nov 4, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

whoops, got my wires crossed.

Please sign in to comment.