Merge "Fix rabbitmq install for RHEL/CentOS"

This commit is contained in:
Jenkins 2016-09-05 07:31:36 +00:00 committed by Gerrit Code Review
commit d96206a4cc
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,12 @@ class infracloud::controller(
release => $openstack_release,
package_require => true,
}
package { 'erlang':
ensure => present,
before => Class['::rabbitmq'],
}
}
default: {
fail("Unsupported osfamily: ${::osfamily} The 'infracloud' module only supports osfamily Debian or RedHat.")