Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. [main]
  2. # Where Puppet stores dynamic and growing data.
  3. # The default value is '/var/puppet'.
  4. vardir = /var/lib/puppet
  5.  
  6. # The Puppet log directory.
  7. # The default value is '$vardir/log'.
  8. logdir = /var/log/puppet
  9.  
  10. # Where Puppet PID files are kept.
  11. # The default value is '$vardir/run'.
  12. rundir = /var/run/puppet
  13.  
  14. # Where SSL certificates are kept.
  15. # The default value is '$confdir/ssl'.
  16. ssldir = $vardir/ssl
  17.  
  18. # use cobbler to get external nodes information
  19. external_nodes = /usr/bin/cobbler-ext-nodes
  20. node_terminus = exec
  21.  
  22. pluginsync = true
  23.  
  24. #[development]
  25. # manifest = /etc/puppet/development/site.pp
  26. # modulepath = /etc/puppet/development/modules
  27.  
  28. #[testing]
  29. # manifest = /etc/puppet/testing/site.pp
  30. # modulepath = /etc/puppet/testing/modules
  31.  
  32.  
  33. [puppetd]
  34. # The file in which puppetd stores a list of the classes
  35. # associated with the retrieved configuratiion. Can be loaded in
  36. # the separate ``puppet`` executable using the ``--loadclasses``
  37. # option.
  38. # The default value is '$confdir/classes.txt'.
  39. classfile = $vardir/classes.txt
  40.  
  41. # Where puppetd caches the local configuration. An
  42. # extension indicating the cache format is added automatically.
  43. # The default value is '$confdir/localconfig'.
  44. localconfig = $vardir/localconfig
  45.  
  46. report = true
  47.  
  48. [puppetmasterd]
  49. modulepath = '/etc/puppet/modules'
  50. certdnsnames = 'puppet.private.b.statcounter.com'
  51. certname=puppet
  52.  
  53. #reports = tagmail,store,log,rrdgraph
  54. reports = store,rrdgraph,foreman
  55.  
  56. storeconfigs = true
  57. dbadapter = mysql
  58. dbuser = puppet
  59. dbpassword = sekrit
  60. dbserver = localhost
  61. #dbsocket = /var/run/mysqld/mysqld.sock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement