Advertisement
theillien

puppet.conf

Apr 11th, 2013
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. [main]
  2. # The Puppet log directory.
  3. # The default value is '$vardir/log'.
  4. logdir = /var/log/puppet
  5.  
  6. # Where Puppet PID files are kept.
  7. # The default value is '$vardir/run'.
  8. rundir = /var/run/puppet
  9.  
  10. # Where SSL certificates are kept.
  11. # The default value is '$confdir/ssl'.
  12. ssldir = $vardir/ssl
  13. ssl_client_header = SSL_CLIENT_S_DN
  14. ssl_client_verify_header = SSL_CLIENT_VERIFY
  15.  
  16.  
  17. [development]
  18. modulepath = $confdir/environments/development/modules
  19. manifest = $confdir/environments/development/manifests/site.pp
  20.  
  21. [testing]
  22. modulepath = $confdir/environments/testing/modules
  23. manifest = $confdir/environments/testing/manifests/site.pp
  24.  
  25. [master]
  26. # Our environment's basic settings
  27. manifest = $confdir/environments/production/manifests/site.pp
  28. modulepath = $confdir/environments/production/modules
  29. certname = tcecapm2r6pm01.ecap.cciio
  30. storeconfigs = true
  31. storeconfigs_backend = puppetdb
  32. reports = store,http,puppetdb
  33. reportsurl = http://dashboard.example.com/reports/upload
  34. node_terminus = exec
  35. external_nodes = /usr/bin/env PUPPET_DASHBOARD_URL=http://dashboard.ecap.cciio /usr/share/puppet-dashboard/bin/external_node
  36.  
  37. [agent]
  38. # The file in which puppetd stores a list of the classes
  39. # associated with the retrieved configuratiion. Can be loaded in
  40. # the separate ``puppet`` executable using the ``--loadclasses``
  41. # option.
  42. # The default value is '$confdir/classes.txt'.
  43. classfile = $vardir/classes.txt
  44.  
  45. # Where puppetd caches the local configuration. An
  46. # extension indicating the cache format is added automatically.
  47. # The default value is '$confdir/localconfig'.
  48. localconfig = $vardir/localconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement