Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.81 KB | None | 0 0
  1. topicprefix = /topic/mcollective
  2. libdir = /usr/share/mcollective/plugins
  3. logfile = /dev/null
  4. loglevel = info
  5.  
  6. # Plugins
  7. securityprovider = psk
  8. plugin.psk = unset
  9.  
  10. connector = stomp
  11. plugin.stomp.host = localhost
  12. plugin.stomp.port = 6163
  13. plugin.stomp.user = mcollective
  14. plugin.stomp.password = marionette
  15.  
  16. # Facts
  17. factsource = yaml
  18. plugin.yaml = /etc/mcollective/facts.yaml
  19.  
  20.  
  21. Server.cfg:
  22.  
  23. topicprefix = /topic/mcollective
  24. libdir = /usr/share/mcollective/plugins
  25. logfile = /var/log/mcollective.log
  26. loglevel = info
  27. daemonize = 1
  28.  
  29. # Plugins
  30. securityprovider = psk
  31. plugin.psk = unset
  32.  
  33. connector = stomp
  34. plugin.stomp.host = localhost
  35. plugin.stomp.port = 6163
  36. plugin.stomp.user = mcollective
  37. plugin.stomp.password = marionette
  38.  
  39. # Facts
  40. factsource = yaml
  41. plugin.yaml = /etc/mcollective/facts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement