Advertisement
Guest User

Untitled

a guest
Jun 11th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 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. pluginsync = true
  19. factpath = $vardir/lib/facter
  20.  
  21. [puppetd]
  22. # The file in which puppetd stores a list of the classes
  23. # associated with the retrieved configuratiion. Can be loaded in
  24. # the separate ``puppet`` executable using the ``--loadclasses``
  25. # option.
  26. # The default value is '$confdir/classes.txt'.
  27. classfile = $vardir/classes.txt
  28.  
  29. # Where puppetd caches the local configuration. An
  30. # extension indicating the cache format is added automatically.
  31. # The default value is '$confdir/localconfig'.
  32. localconfig = $vardir/localconfig
  33. report = true
  34.  
  35. [production]
  36. manifest = /etc/puppet/manifests/production/site.pp
  37. modulepath = /etc/puppet/modules/production
  38.  
  39. [development]
  40. manifest = /etc/puppet/manifests/development/site.pp
  41. modulepath = /etc/puppet/modules/development
  42.  
  43. [puppetmasterd]
  44. storeconfigs = true
  45. dbadapter = mysql
  46. dbuser = removed
  47. dbname = removed
  48. dbpassword = removed
  49. dbserver = removed
  50. dbsocket = /var/run/mysqld/mysql.sock
  51. modulepath = /etc/puppet/modules/custom/lib/facter
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement