Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. node 'wave.arin.net' {
  2. # Setup SysAdmin Users + Syncer Account
  3. import 'defaultusers.pp'
  4. # Disable Services From Starting on Boot
  5. include disable-default-services
  6. # Install and Start Postfix
  7. class { "postfix": }
  8. # Set the GECOS info for root in /etc/passwd
  9. include rootgecos
  10. # Manage the /etc/sudoers files with ARIN default settings
  11. class { "sudo": }
  12. # Configure Puppet and apply the correct .conf files.
  13. class { "puppet":
  14. disable => "false",
  15. puppetconf => "cha",
  16. authconf => "cha",
  17. namespaceauthconf => "cha",
  18. }
  19. }
  20.  
  21. node 'x.arin.net' {
  22. # Setup SysAdmin Users + Syncer Account
  23. import 'defaultusers.pp'
  24. # Disable Services From Starting on Boot
  25. include disable-default-services
  26. # Install and Start Postfix
  27. class { "postfix": }
  28. # Set the GECOS info for root in /etc/passwd
  29. include rootgecos
  30. # Manage the /etc/sudoers files with ARIN default settings
  31. class { "sudo": }
  32. # Configure Puppet and apply the correct .conf files.
  33. class { "puppet":
  34. disable => "false",
  35. puppetconf => "cha",
  36. authconf => "cha",
  37. namespaceauthconf => "cha",
  38. }
  39. }
  40.  
  41. // Hello
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement