[Solved] puppet, what is the difference between ‘=’ and ‘=>’
= is used to assign a value to a variable, e.g. $foo = ‘bar’ There are some advanced ways to assign variables in Puppet 4, but generally speaking whenever it’s a $variable on the left hand side of the expression, add no comma and always use =. Further variable assignments are simply separated by new … Read more