diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-09-04 18:02:34 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-09-04 18:02:34 -0700 |
commit | a2f52aecdcc2e31e1ffcd85f4aa1f61ddcc9e770 (patch) | |
tree | bab6939145c01d1ae9285c63ef31181be94de275 /lib/chef/platform.rb | |
parent | 4bdc0a4e18b4b3b8107581853b81d7a2826e8f30 (diff) | |
download | chef-a2f52aecdcc2e31e1ffcd85f4aa1f61ddcc9e770.tar.gz |
Adding script support!
Diffstat (limited to 'lib/chef/platform.rb')
-rw-r--r-- | lib/chef/platform.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/chef/platform.rb b/lib/chef/platform.rb index e947328c9a..3e8bb6809c 100644 --- a/lib/chef/platform.rb +++ b/lib/chef/platform.rb @@ -37,7 +37,13 @@ class Chef :remote_file => Chef::Provider::RemoteFile, :remote_directory => Chef::Provider::RemoteDirectory, :sysctl => Chef::Provider::Sysctl, - :execute => Chef::Provider::Execute + :execute => Chef::Provider::Execute, + :script => Chef::Provider::Script, + :perl => Chef::Provider::Script, + :python => Chef::Provider::Script, + :ruby => Chef::Provider::Script, + :bash => Chef::Provider::Script, + :csh => Chef::Provider::Script } } |