search for: _interfaces

Displaying 2 results from an estimated 2 matches for "_interfaces".

Did you mean: interfaces
2007 Oct 12
10
external nodes
I use a simple yaml file and and an external nodes script to express each of my nodes. What I''m trying to do is make sure that all individual data is expressed at the node level and not have anything in classes or modules that isn''t generic and shared. the example below works really well but I can''t express it via my external nodes, I have to bury it in a class (or
2007 Oct 29
0
ENC a simple example
...el. --start-- --- classes: parameters: puppetserver: puppet.example.com --end-- The way I''m handling node level defines is by defining custom classes at the node level. For example my ''network'' module (which handles interfaces etc) defines a class called ${safe_fqdn}_interfaces ${safe_fqdn} is the fqdn with illegal chars stripped out to ''_'' since puppet doesn''t let me define classes with ''.,-'' and so on. interfaces.pp defines the ${safe_fqdn}_interfaces class and contains the custom defines that setup interface aliases. As I...