summaryrefslogtreecommitdiff
path: root/lib/chef/resource/csh.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/csh.rb')
-rw-r--r--lib/chef/resource/csh.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/chef/resource/csh.rb b/lib/chef/resource/csh.rb
index ef302af6c0..0938a19cb1 100644
--- a/lib/chef/resource/csh.rb
+++ b/lib/chef/resource/csh.rb
@@ -21,11 +21,13 @@ require "chef/provider/script"
class Chef
class Resource
- # Use the csh resource to execute scripts using the csh interpreter. This resource may also use any of the actions
- # and properties that are available to the execute resource. Commands that are executed with this resource are (by
- # their nature) not idempotent, as they are typically unique to the environment in which they are run. Use not_if
- # and only_if to guard this resource for idempotence.
class Csh < Chef::Resource::Script
+ description "Use the csh resource to execute scripts using the csh interpreter."\
+ " This resource may also use any of the actions and properties that are"\
+ " available to the execute resource. Commands that are executed with this"\
+ " resource are (by their nature) not idempotent, as they are typically"\
+ " unique to the environment in which they are run. Use not_if and only_if"\
+ " to guard this resource for idempotence."
def initialize(name, run_context = nil)
super