Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use correct datatype for port param in README.md #652

Merged
merged 1 commit into from
Oct 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
use correct datatype for port param in README.md
  • Loading branch information
bastelfreak committed Oct 18, 2017
commit a1f5c7f89c5bf9b58e38b346a1f52e528c7e174b
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