Version information
released Nov 10th 2013
Start using this module
Add this module to your Puppetfile:
mod 'zack-env', '0.0.1'
Learn more about managing modules with a PuppetfileDocumentation
zack/env — version 0.0.1 Nov 10th 2013
Simple yaml cache hack
This is a puppet face that will display a node or list of nodes last checked in environment.
Usage
- Install the module into your modulepath
- On puppet 2.7 and lower export your RUBYLIB to this folder
export RUBYLIB=`puppet config print modulepath | awk -F':' '{print $1}'`/lib
puppet node env <node_name>
For a list of all nodes use '*'
puppet node env '*'
An example use would be monitoring students checking into the puppet master in the fundamentals class
while :; do clear; puppet node env '*' ; sleep 2; done
or if you have a newer version of watch
watch --color 'puppet node env "*"'