summaryrefslogtreecommitdiff
path: root/lib/chef/provider/execute.rb
diff options
context:
space:
mode:
authorAdam Jacob <adam@hjksolutions.com>2008-10-07 17:20:52 -0700
committerAdam Jacob <adam@hjksolutions.com>2008-10-07 17:20:52 -0700
commit90ff3ee555c8b5a1b124456e8e1f4554271b28d3 (patch)
tree1e70868bbe99dcdbe99ccd8fbcf7bb1048567bc3 /lib/chef/provider/execute.rb
parent1defdb7a6d04db25b04a2e87ccb08599ccca35dc (diff)
downloadchef-90ff3ee555c8b5a1b124456e8e1f4554271b28d3.tar.gz
A whole bunch of missing changes!
Diffstat (limited to 'lib/chef/provider/execute.rb')
-rw-r--r--lib/chef/provider/execute.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/execute.rb b/lib/chef/provider/execute.rb
index 82603fe370..67a706e4f1 100644
--- a/lib/chef/provider/execute.rb
+++ b/lib/chef/provider/execute.rb
@@ -35,7 +35,7 @@ class Chef
}
command_args[:creates] = @new_resource.creates if @new_resource.creates
command_args[:onlyif] = @new_resource.onlyif if @new_resource.onlyif
- command_args[:unless] = @new_resource.unless if @new_resource.unless
+ command_args[:not_if] = @new_resource.not_if if @new_resource.not_if
command_args[:timeout] = @new_resource.timeout if @new_resource.timeout
command_args[:returns] = @new_resource.returns if @new_resource.returns
command_args[:environment] = @new_resource.environment if @new_resource.environment