added rabbitmq module. I added this temporarily

while I try to sort out how to get the features
that I need into puppetlabs-rabbitmq.
This commit is contained in:
Dan Bode 2011-06-01 15:24:41 -07:00
parent 15f8132daa
commit ea1c36cd4c
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
class nova::rabbitmq {
package { 'rabbitmq-server':
ensure => installed,
}
service { 'rabbitmq-server':
ensure => running,
enable => true,
}
}