Guest User

Untitled

a guest
Jun 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. [main]
  2. vardir = /var/lib/puppet
  3. logdir = /var/log/puppet
  4. rundir = /var/run/puppet
  5. ssldir = $vardir/ssl
  6. runinterval = 1800
  7. pluginsync = true
  8. factpath = $vardir/lib/facter
  9.  
  10. [puppetd]
  11. classfile = $vardir/classes.txt
  12. localconfig = $vardir/localconfig
  13. graph = true
  14. report = true
  15. catalog_format = marshal
  16. reportserver = puppet-reports.pinetecltd.net
  17.  
  18. [puppetmasterd]
  19. certname = puppet
  20. masterport = 18140
  21. servertype = mongrel
  22.  
  23. certname = puppet
  24. certdnsnames = puppet-reports.pinetecltd.net
  25.  
  26. factsync = true
  27. factpath = /etc/puppet/manifests/facts
  28.  
  29. environments = development,production,bootstrap
  30. environment = bootstrap
  31.  
  32. modulepath = /etc/puppet/manifests/common/modules
  33.  
  34. rrddir = /var/lib/puppet/rrd
  35. rrdgraph = true
  36. rrdinterval = 1800
  37. reports = rrdgraph,store
  38.  
  39. [development]
  40. modulepath = /etc/puppet/manifests/development/modules:/etc/puppet/manifests/common/modules
  41. manifest = /etc/puppet/manifests/development/site.pp
  42.  
  43. [production]
  44. modulepath = /etc/puppet/manifests/production/modules:/etc/puppet/manifests/common/modules
  45. manifest = /etc/puppet/manifests/production/site.pp
  46.  
  47. [bootstrap]
  48. modulepath = /etc/puppet/manifests/bootstrap/modules:/etc/puppet/manifests/common/modules
  49. manifest = /etc/puppet/manifests/bootstrap/site.pp
Add Comment
Please, Sign In to add comment