diff options
author | Nolan Davidson <nolan.davidson@gmail.com> | 2015-10-01 08:00:22 -0400 |
---|---|---|
committer | Nolan Davidson <nolan.davidson@phishme.com> | 2015-10-06 12:24:46 -0400 |
commit | ed5d27f1cfd3ec0f826cd7910e715f20eabe7505 (patch) | |
tree | 64800b33584288210647809a221d632ddbb34e36 /lib/chef/resource/ksh.rb | |
parent | 8c042622fbf94acca813bd6d84d967d2ea08ec43 (diff) | |
download | chef-ed5d27f1cfd3ec0f826cd7910e715f20eabe7505.tar.gz |
Adding ksh resource and specs
Diffstat (limited to 'lib/chef/resource/ksh.rb')
-rw-r--r-- | lib/chef/resource/ksh.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/chef/resource/ksh.rb b/lib/chef/resource/ksh.rb new file mode 100644 index 0000000000..2d4f585610 --- /dev/null +++ b/lib/chef/resource/ksh.rb @@ -0,0 +1,33 @@ +# +# Author:: Nolan Davidson (<nolan.davidson@gmail.com>) +# Copyright:: Copyright (c) 2008 Opscode, Inc. +# License:: Apache License, Version 2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +require 'chef/resource/script' +require 'chef/provider/script' + +class Chef + class Resource + class Ksh < Chef::Resource::Script + + def initialize(name, run_context=nil) + super + @interpreter = "ksh" + end + + end + end +end |