Skip to content
Snippets Groups Projects
common.pp 502 B
Newer Older
# fact::common contains common facts.  It is a class, so it can be included 
# multiple times but will only be compiled once.
# Users of this shared module should `include fact::common` in their defaults 
# as a safety measure.  That being said, the fact type does include this class, 
# so clients which define at least one custom fact should be fine.
class fact::common {
  # Make sure we have the basic sufact directory
  include fact::files
 
  # Now, let's start populating some common facts!
 
}