Skip to content
This repository has been archived by the owner on Apr 21, 2020. It is now read-only.

Commit

Permalink
Add makeshift namespace to bundle_install
Browse files Browse the repository at this point in the history
This is a very generic name, and since the somewhat deprecated definitions
method is used rather than custom resources it cannot be overridden with a
different provider.
  • Loading branch information
sverch committed Jun 1, 2017
1 parent e10b85f commit f807951
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion definitions/bundle_install.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define :bundle_install do
define :newrelic_plugins_bundle_install do
# install bundler gem
gem_package 'bundler' do
options '--no-ri --no-rdoc'
Expand Down
2 changes: 1 addition & 1 deletion recipes/aws_cloudwatch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
end

# install bundler gem and run 'bundle install'
bundle_install do
newrelic_plugins_bundle_install do
path node[:newrelic][:aws_cloudwatch][:plugin_path]
user node[:newrelic][:aws_cloudwatch][:user]
end
Expand Down
2 changes: 1 addition & 1 deletion recipes/example.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
end

# install bundler gem and run 'bundle install'
bundle_install do
newrelic_plugins_bundle_install do
path node[:newrelic][:example][:plugin_path]
user node[:newrelic][:example][:user]
end
Expand Down
2 changes: 1 addition & 1 deletion recipes/memcached_ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
end

# install bundler gem and run 'bundle install'
bundle_install do
newrelic_plugins_bundle_install do
path node[:newrelic][:memcached_ruby][:plugin_path]
user node[:newrelic][:memcached_ruby][:user]
end
Expand Down
2 changes: 1 addition & 1 deletion recipes/rackspace_load_balancers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
end

# install bundler gem and run 'bundle install'
bundle_install do
newrelic_plugins_bundle_install do
path node[:newrelic][:rackspace_load_balancers][:plugin_path]
user node[:newrelic][:rackspace_load_balancers][:user]
end
Expand Down
2 changes: 1 addition & 1 deletion recipes/wikipedia_example_ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
end

# install bundler gem and run 'bundle install'
bundle_install do
newrelic_plugins_bundle_install do
path node[:newrelic][:wikipedia_example_ruby][:plugin_path]
user node[:newrelic][:wikipedia_example_ruby][:user]
end
Expand Down

0 comments on commit f807951

Please sign in to comment.