Skip to content

Commit

Permalink
Corrected ruby syntax (no commas).
Browse files Browse the repository at this point in the history
  • Loading branch information
manarth committed May 18, 2012
1 parent 39464c6 commit 1812277
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Vagrantfile
Expand Up @@ -2,6 +2,7 @@
# vi: set ft=ruby :

Vagrant::Config.run do |config|

# This box was originally based against lucid32.
config.vm.box = "lucid32"

Expand Down Expand Up @@ -30,13 +31,13 @@ Vagrant::Config.run do |config|

# The puppet config builds all the services such as Apache, MySQL, etc.
# These paths are relative to this Vagrant file.

puppetpath = File.expand_path(__FILE__ + '/../puppet');

config.vm.provision :puppet do |puppet|
puppet.module_path = puppetpath + "/modules",

puppet.manifests_path = puppetpath + "/manifests",
puppet.manifest_file = puppetpath + "/manifests/base.pp"
puppet.module_path = puppetpath + "/modules"
puppet.manifests_path = puppetpath + "/manifests"
puppet.manifest_file = "base.pp"
end

end

0 comments on commit 1812277

Please sign in to comment.