Advertisement
Guest User

Untitled

a guest
Jun 30th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 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 the Puppet PID files are kept.
  7. # The default value is '$vardir/run'.
  8. rundir = /var/run/puppet
  9.  
  10. external_nodes = /usr/bin/cobbler-ext-nodes
  11. node_terminus = exec
  12.  
  13. [puppetd]
  14. # The file in which puppetd stores a list of the classes
  15. # associated with the retrieved configuration. Can be loaded in
  16. # the seperate ``puppet`` executable using the ``--loadclasses``
  17. # option.
  18. # The default value is '$confdir/classes.txt'.
  19. classfile = $vardir/classes.txt
  20.  
  21. # Where puppetd caches the local configuration. An
  22. # extension indicating the cache format is added automatically.
  23. # The default value is '$confdir/localconfig'.
  24. localconfig = $vardir/localconfig
  25.  
  26. [puppetmasterd]
  27.  
  28. # The main Puppet configuration directory. The default for this
  29. # parameter is calculated based on the user.
  30. confdir = /puppet/production
  31.  
  32. # Where Puppet stores dynamic and growing data. The default for this
  33. # parameter is calculated specially, like confdir.
  34. # The default value is '/var/lib/puppet'.
  35. vardir = /var/lib/puppet
  36.  
  37. # Where the SSL certificates are kept.
  38. # The default value is '$confdir/ssl'.
  39. ssldir = $vardir/ssl
  40. reports = tagmail
  41. tagmap = $confdir/tagmail.conf
  42.  
  43. ssl_client_header = SSL_CLIENT_S_DN
  44. ssl_client_verify_header = SSL_CLIENT_VERIFY
  45. certificate_revocation = false
  46.  
  47.  
  48. queue_type = stomp
  49. queue_source = stomp://localhost:61613
  50.  
  51. # enable store configs
  52. async_storeconfigs = true
  53. # use Postgres for store configs
  54. dbadapter = postgresql
  55. dbuser = puppet
  56. dbpassword = puppet
  57. dbserver = ls00034p
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement