This is the second post in the series for getting started with Puppet. We are going to run a really simple Puppet module that is hosted on GitHub. Tools needed: Git client (of course) VM or Nitrous.io or anything similar Puppet client installed (discussed in Part 1) Step 1 : Download the Hello World module git clone https://github.com/adityai/puppetStarter.git Step 2: Run the Puppet hello world sample cd puppetStarter sudo puppet apply --modulepath . helloWorld/site.pp This is how we apply a puppet module from the command line directly on the target machine or on your development workstation. The output will have some information about verifying or compiling along with a message 'Hello World!" ➜ puppetStarter git:(master) sudo puppet apply --modulepath . helloworld/manifests/site.pp Notice: Compiled catalog for ruby-on-rails-139787.us-west-2.compute.internal in environment production in 0.05 seconds Notice: Hello World Notice: /Stage[...
It has to be simple.