Guest User

Untitled

a guest
May 29th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. [root@talus]:/puppet/development/modules/puppet# cat /etc/puppet/puppet.conf 2:27PM
  2. #
  3. [main]
  4. environment = production
  5. confdir = /puppet/production/master
  6. vardir = /var/puppet/production
  7. catalog_format = marshal
  8. bindaddress = 138.77.5.167
  9. masterport = 8140
  10. storeconfigs = false
  11. dbadapter = mysql
  12. dbuser = puppet
  13. dbpassword = pup123
  14. dbsocket = $rundir/mysqld.sock
  15. ssldir = $vardir/ssl
  16. manifestdir = $confdir/../manifests
  17. libdir = $confdir/../plugins
  18. # masterlog = $logdir/puppetmaster.log
  19.  
  20. [puppetmasterd]
  21. environments = production, development
  22.  
  23. [production]
  24. modulepath = /puppet/production/modules
  25. templatedir = /puppet/production/templates
  26. manifest = /puppet/production/manifests/site.pp
  27.  
  28. [development]
  29. modulepath = /puppet/development/modules
  30. templatedir = /puppet/development/templates
  31. manifest = /puppet/development/manifests/site.pp
  32.  
  33. [ast]
  34. typecheck = true
  35. paramcheck = true
  36. [root@talus]:/puppet/development/modules/puppet# cat /etc/puppet/fileserver.conf 2:28PM
  37. # $Id: fileserver.conf 67 2007-09-28 04:27:38Z cogginss $
  38.  
  39. [dist]
  40. path /etc/puppet/dist
  41. allow *.cqu.edu.au
  42.  
  43. [modules]
  44. allow *.cqu.edu.au
  45.  
  46. [plugins]
  47. allow *.cqu.edu.au
  48.  
  49. #[facts]
  50. # allow *.cqu.edu.au
  51. [root@talus]:/puppet/development/modules/puppet# ls -la /puppet/development/modules/solaris/plugins 2:28PM
  52. total 8
  53. drwxrwxr-x 4 root sysadmins 512 Dec 15 12:37 .
  54. drwxrwxr-x 8 root sysadmins 512 Dec 15 12:37 ..
  55. drwxrwxr-x 6 root sysadmins 512 Dec 15 12:42 .svn
  56. drwxrwxr-x 3 root sysadmins 512 Dec 15 12:39 facter
  57. [root@talus]:/puppet/development/modules/puppet# cat /puppet/development/modules/puppet/files/puppet 2:28PM
  58. puppet.conf puppetd.xml
  59. [root@talus]:/puppet/development/modules/puppet# cat /puppet/development/modules/puppet/files/puppet.conf 2:28PM
  60. [main]
  61. environment = production
  62. listen = true
  63. runinterval = 1800
  64. report = true
  65. factsync = true
  66. pluginsync = true
  67. factpath = $vardir/lib/facter
  68.  
  69. [puppetd]
  70. environments = production, development
  71.  
  72. [production]
  73.  
  74. [development]
  75.  
  76. [ast]
  77. typecheck = true
  78. paramcheck = true
Add Comment
Please, Sign In to add comment