Created
June 17, 2014 15:03
-
-
Save jamescarr/2fe5ee6827407dd9c96f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Vagrant.configure("2") do |config| | |
| config.librarian_puppet.puppetfile_dir = "puppet" | |
| # placeholder_filename defaults to .PLACEHOLDER | |
| config.librarian_puppet.placeholder_filename = ".MYPLACEHOLDER" | |
| config.vm.provision :puppet do |puppet| | |
| puppet.modules = "puppet/modules" | |
| ... | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i'm getting the following error when I try: https://gist.github.com/paul42/3b2de47b4ddf654df8ea
1.) vagrant init (puppet centos box)
2.) Add 'manifests_path' variable because it complains
3.) vagrant up
should I be doing something differently?