Advertisement
Guest User

Untitled

a guest
Nov 19th, 2015
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. -bash-4.2$ cat Puppetfile
  2. forge "https://forge.puppetlabs.com"
  3.  
  4. # Modules from the forge
  5. mod "puppetlabs/stdlib", "4.5.1"
  6. mod "puppetlabs/concat", "1.2.0"
  7. mod "puppetlabs/ntp", "3.3.0"
  8. mod "puppetlabs/firewall", "1.4.0"
  9. mod "puppetlabs/dhcp", "0.3.0"
  10. mod "saz/dnsmasq", "1.2.0"
  11. mod "ghoneycutt/dnsclient", "3.2.0"
  12. mod "thias/squid3", "0.2.3"
  13. mod "thias/tuned", "1.0.0"
  14. #mod "jfryman/selinux", "0.2.3"
  15. mod "spiette/selinux", "0.5.4"
  16. mod "adrien/boolean"
  17. mod "razorsedge/network", "3.3.0"
  18. mod "dalen/dnsquery", "2.0.0"
  19. mod "saz/rsyslog", "3.4.0"
  20. mod "thias/sysctl", "1.0.2"
  21. mod "erwbgy/limits", "0.3.1"
  22. mod "trlinkin/nsswitch", "1.0.0"
  23. mod "razorsedge/snmp", "3.3.1"
  24. mod "rodjek/logrotate", "1.1.1"
  25. mod "mjhas/postfix", "1.0.0"
  26.  
  27. # From GitHub
  28. mod "subscription-manager",
  29. :git => "https://github.com/jlaska/puppet-subscription_manager",
  30. :commit => "6d6db77e1daf335828310bef32c00c72eaf6c780"
  31.  
  32. mod "oracleclient",
  33. :git => "https://github.com/andskli/puppet-oracleclient"
  34.  
  35. # Our own modules
  36. mod "customfacts",
  37. :git => "ssh://git@git/puppet-customfacts.git"
  38.  
  39. mod "roles",
  40. :git => "ssh://git@git/puppet-roles.git"
  41.  
  42. mod "profiles",
  43. :git => "ssh://git@git/puppet-profiles.git"
  44.  
  45. mod "motd",
  46. :git => "ssh://git@git/puppet-motd.git"
  47.  
  48. mod "hardening",
  49. :git => "ssh://git@git/puppet-hardening.git"
  50.  
  51. mod "accelops",
  52. :git => "ssh://git@git01/puppet-accelops.git"
  53.  
  54. tand@puppet01-mgm ~]$ cat /etc/cron.d/r10k
  55. # Run the hourly jobs
  56. */30 * * * * root /usr/local/bin/r10k.sh deploy environment -v -p 2>&1 >> /var/log/r10k.log
  57. [myuser@puppetmaster ~]$ cat /usr/local/bin/r10k.sh
  58. #!/bin/bash
  59.  
  60. set -x
  61. umask 022
  62. PROXY=http://proxy:8080/
  63. export http_proxy=${PROXY}
  64. export https_proxy=${PROXY}
  65.  
  66. exec /opt/puppet/bin/r10k $@
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement