I\'m trying to work out the best way to set some environment variables with puppet.
I could use exec and just do export VAR=blah. However, that would only
export VAR=blah
If you add it to your bashrc you can check that it's in the ENV hash by doing
ENV[VAR]
Which will return => "blah"