Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. root@splunk:/opt/software# /etc/init.d/puppetmaster start
  2. * Starting puppet configuration management tool master server
  3. Failed to load feature test for rack: no such file to load -- rubygems
  4. Unable to find application 'puppetmasterd'.
  5. ...fail!
  6.  
  7. This is what my test site looks like:
  8.  
  9. # Create "/tmp/testfile" if it doesn't exist.
  10. class test_class {
  11. file { "/tmp/testfile":
  12. ensure => present,
  13. mode => 644,
  14. owner => root,
  15. group => root
  16. }
  17. }
  18.  
  19. # tell puppet on which client to run the class
  20. node hosting {
  21. include test_class
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement