Skip to content

Commit

Permalink
use correct datatype for port param in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Oct 18, 2017
1 parent d0cbee2 commit 4e90864
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ To use RabbitMQ Environment Variables, use the parameters `environment_variables

```puppet
class { 'rabbitmq':
port => '5672',
port => 5672,
environment_variables => {
'NODENAME' => 'node01',
'SERVICENAME' => 'RabbitMQ'
Expand All @@ -82,7 +82,7 @@ To change RabbitMQ Config Variables in rabbitmq.config, use the parameters `conf

```puppet
class { 'rabbitmq':
port => '5672',
port => 5672,
config_variables => {
'hipe_compile' => true,
'frame_max' => 131072,
Expand All @@ -96,7 +96,7 @@ To change Erlang Kernel Config Variables in rabbitmq.config, use the parameters

```puppet
class { 'rabbitmq':
port => '5672',
port => 5672,
config_kernel_variables => {
'inet_dist_listen_min' => 9100,
'inet_dist_listen_max' => 9105,
Expand Down

0 comments on commit 4e90864

Please sign in to comment.