summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAJ Christensen <aj@junglist.gen.nz>2008-10-03 11:28:32 +1300
committerAJ Christensen <aj@junglist.gen.nz>2008-10-03 11:28:32 +1300
commit6394b5c8839f8d7f2645d9e06a67a204e9e85b6e (patch)
tree0af6bc353f6f666be0affba68e4f8c6457c4c50c /lib
parent0c90f07b180b18592c89c053401cf87816cbcb77 (diff)
downloadchef-6394b5c8839f8d7f2645d9e06a67a204e9e85b6e.tar.gz
Base functionality shifted into init.rb
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/provider/service/base.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/chef/provider/service/base.rb b/lib/chef/provider/service/base.rb
deleted file mode 100644
index 178878296e..0000000000
--- a/lib/chef/provider/service/base.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Author:: AJ Christensen (<aj@hjksolutions.com>)
-# Copyright:: Copyright (c) 2008 HJK Solutions, LLC
-# 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 File.join(File.dirname(__FILE__), "..", "service")
-require File.join(File.dirname(__FILE__), "..", "..", "mixin", "command")
-
-class Chef
- class Provider
- class Base < Chef::Provider::Service
-
- def load_current_resource
- true
- end
-
- end
- end
-end