Skip to content

Commit

Permalink
implement Arch support
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak authored and William Yardley committed Aug 24, 2017
1 parent 11c9fc1 commit 36ca029
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
class rabbitmq::params {

case $::osfamily {
'Archlinux': {
$package_ensure = 'installed'
$package_name = 'rabbitmq'
$service_name = 'rabbitmq'
$rabbitmq_user = 'rabbitmq'
$rabbitmq_group = 'rabbitmq'
$rabbitmq_home = '/var/lib/rabbitmq'
}
'Debian': {
$package_ensure = 'installed'
$package_name = 'rabbitmq-server'
Expand Down

0 comments on commit 36ca029

Please sign in to comment.