Vagrant / puppet workflow

Posted by slim on Server Fault See other posts from Server Fault or by slim
Published on 2012-07-03T12:40:48Z Indexed on 2012/07/03 15:18 UTC
Read the original article Hit count: 394

Filed under:
|
|

I'm new to puppet and vagrant, but I'm developing my own Puppet manifests intended to set up a vagrant box. That is, the puppet manifest is in my Vagrant directory on the host machine, and vagrant is invoking puppet -- there is no puppet server.

The thing is, my workflow is:

 while(not working as desired) {
     vagrant destroy
     amend manifest
     vagrant up
 }

... and this means quite a lot of waiting around.

What's a better way to work?

© Server Fault or respective owner

Related posts about puppet

Related posts about Workflow