summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/chef-apply2
-rw-r--r--lib/chef/application/apply.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/chef-apply b/bin/chef-apply
index ed7f3173a5..54ce230582 100755
--- a/bin/chef-apply
+++ b/bin/chef-apply
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby
#
-# ./chef-recipe - Run a single chef recipe, for educational purposes
+# ./chef-apply - Run a single chef recipe
#
# Author:: Bryan W. Berry (<bryan.berry@gmail.com>)
# Copyright:: Copyright (c) 2012 Bryan W. Berry
diff --git a/lib/chef/application/apply.rb b/lib/chef/application/apply.rb
index cf34f51c19..98cb29ba69 100644
--- a/lib/chef/application/apply.rb
+++ b/lib/chef/application/apply.rb
@@ -29,7 +29,7 @@ require 'chef/resources'
class Chef::Application::Apply < Chef::Application
- banner "Usage: chef-recipe [RECIPE_FILE] [-e RECIPE_TEXT] [-s]"
+ banner "Usage: chef-apply [RECIPE_FILE] [-e RECIPE_TEXT] [-s]"
option :execute,
@@ -104,7 +104,7 @@ class Chef::Application::Apply < Chef::Application
else
Chef::RunContext.new(@chef_client.node, {}, @chef_client.events)
end
- recipe = Chef::Recipe.new("(chef-recipe cookbook)", "(chef-recipe recipe)", run_context)
+ recipe = Chef::Recipe.new("(chef-apply cookbook)", "(chef-apply recipe)", run_context)
[recipe, run_context]
end