summaryrefslogtreecommitdiff
path: root/lib/chef/provider/batch.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider/batch.rb')
-rw-r--r--lib/chef/provider/batch.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/chef/provider/batch.rb b/lib/chef/provider/batch.rb
index b79b464cbd..a8504fa656 100644
--- a/lib/chef/provider/batch.rb
+++ b/lib/chef/provider/batch.rb
@@ -24,10 +24,6 @@ class Chef
provides :batch
- def initialize(new_resource, run_context)
- super(new_resource, run_context, ".bat")
- end
-
def command
basepath = is_forced_32bit ? wow64_directory : run_context.node["kernel"]["os_info"]["system_directory"]
@@ -40,6 +36,9 @@ class Chef
new_resource.flags.nil? ? "/c" : new_resource.flags + " /c"
end
+ def script_extension
+ ".bat"
+ end
end
end
end