EntropyWorks

Cheffile for folsom

Jul 26th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.53 KB | None | 0 0
  1. #!/usr/bin/env ruby
  2. #^syntax detection
  3.  
  4. # Working on getting OpenStack Folsom up and running. One or more cookbooks not listed here.
  5. #
  6. # PPA from https://launchpad.net/~openstack-ubuntu-testing
  7. #
  8. # deb http://ppa.launchpad.net/openstack-ubuntu-testing/precise-trunk-testing/ubuntu precise main
  9. #
  10. #  I have run into some problems with this PPA packages.
  11. #
  12. #  - Horizon issues: http://pastebin.com/DPLnEVhv
  13. #  - Glance (I need to create a paste bin with my work around hack)
  14. #
  15.  
  16. site 'http://community.opscode.com/api/v1'
  17.  
  18. cookbook 'chef-client',
  19.   :git => 'https://github.com/opscode-cookbooks/chef-client.git'
  20.  
  21. cookbook 'ohai'
  22. cookbook 'python'
  23. cookbook 'runit'
  24. cookbook 'ufw'
  25. cookbook 'firewall'
  26. cookbook 'annoyances'
  27. cookbook 'selinux'
  28. cookbook 'users'
  29. cookbook 'modules'
  30.  
  31. cookbook 'ntp',
  32.   :ref => '1.1.8'
  33.  
  34. cookbook 'openssh',
  35.   :ref => '0.8.0'
  36.  
  37. cookbook 'apt',
  38.   :ref => '1.4.2'
  39.  
  40. cookbook 'yum',
  41.   :ref => '0.6.2'
  42.  
  43. cookbook 'build-essential',
  44.   :ref => '1.0.2'
  45.  
  46. cookbook 'erlang',
  47.   :ref => '1.0.0'
  48.  
  49. cookbook 'openssl',
  50.   :ref => '1.0.0'
  51.  
  52. cookbook 'chef_handler',
  53.   :ref => '1.0.6'
  54.  
  55. cookbook 'mysql',
  56.   :ref => '1.2.6'
  57.  
  58. cookbook 'postgresql',
  59.   :ref => '0.99.4'
  60.  
  61. cookbook 'aws',
  62.   :ref => '0.99.1'
  63.  
  64. cookbook 'xfs',
  65.   :ref => '1.0.0'
  66.  
  67. cookbook 'apache2',
  68.   :ref => '1.1.12'
  69.  
  70. cookbook 'dsh',
  71.   :git => 'https://github.com/rcbops-cookbooks/dsh.git'
  72.  
  73. cookbook 'rabbitmq',
  74.   :git => 'https://github.com/opscode-cookbooks/rabbitmq.git'
  75.  
  76. cookbook 'database',
  77.   :git => 'https://github.com/mattray/database.git'
  78.  
  79.  
  80. cookbook 'osops-utils',
  81.   :git => 'https://github.com/mattray/osops-utils.git'
  82.  
  83. cookbook 'horizon',
  84.   :git => 'https://github.com/mattray/horizon.git',
  85.   :ref => 'essex'
  86.  
  87. cookbook 'swift',
  88.   :git => 'https://github.com/mattray/swift.git',
  89.   :ref => 'essex'
  90.  
  91. cookbook 'nova',
  92.   :git => 'https://github.com/mattray/nova.git',
  93.   :ref => 'essex'
  94.  
  95. cookbook 'keystone',
  96.   :git => 'https://github.com/mattray/keystone.git',
  97.   :ref => 'essex'
  98.  
  99. # Things missing still in Opscode Cookbooks
  100. cookbook 'monit',
  101.   :git => 'https://github.com/rcbops-cookbooks/monit.git'
  102.  
  103. cookbook 'glance',
  104.   :git => 'https://github.com/rcbops-cookbooks/glance.git'
  105.  
  106. cookbook 'monitoring',
  107.   :git => 'https://github.com/rcbops-cookbooks/monitoring.git'
  108.  
  109. cookbook 'collectd',
  110.   :git => 'https://github.com/rcbops-cookbooks/collectd.git'
  111.  
  112. cookbook 'rsyslog',
  113.   :git => 'https://github.com/rcbops-cookbooks/rsyslog.git'
  114.  
  115. cookbook 'sysctl',
  116.   :git => 'https://github.com/rcbops-cookbooks/sysctl.git'
Advertisement
Add Comment
Please, Sign In to add comment