Reusable puppet modules for Debian Wheezy.
curl -Ls https://raw.github.com/feedlabs/puppet-packages/master/scripts/puppet-install.sh | bashOn agent:
To make agent able to pull from master, master needs to accept agent's certificate. Send certificate accept request from agent node by running:
puppet agent --test --server <puppet-master> --waitforcert 10 --tags bootstrapOn master: List certificates, pick correct and sign it:
puppet cert list
puppet cert sign <cert-name>It's recommended to write specs for newly developed modules and test them by running appropriate rake task.
All specs should be placed in modules/<module-name>/spec/<spec-name>/spec.rb. This way they can be detected and form rake tasks.
Spec helper will also automatically apply all puppet manifests from the same dir (*.pp).
To test specific module run rake test:<module-name>. To learn about other available tasks please run rake --tasks.
Our test tasks recognize following rake options:
verbose=trueverbose outputdebug=truerunning puppet apply with--debugflagkeep_box=truedo not roll back the vm to a clean state
