From 0d026da21ee5a47966f47e82e4dce3f836d27627 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 10 Mar 2010 13:01:53 -0800 Subject: [PATCH] Base class for chef solo --- lib/vagrant/provisioners/chef_solo.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/vagrant/provisioners/chef_solo.rb diff --git a/lib/vagrant/provisioners/chef_solo.rb b/lib/vagrant/provisioners/chef_solo.rb new file mode 100644 index 000000000..d47e6bc54 --- /dev/null +++ b/lib/vagrant/provisioners/chef_solo.rb @@ -0,0 +1,7 @@ +module Vagrant + module Provisioners + # This class implements provisioning via chef-solo. + class ChefSolo < Base + end + end +end \ No newline at end of file