Skip to content

Commit

Permalink
update rabbitmq default port
Browse files Browse the repository at this point in the history
  • Loading branch information
jlambert121 committed Jan 31, 2014
1 parent 93e8ace commit a9edd94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/puppet/type/sensu_dashboard_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def initialize(*args)
newproperty(:port) do
desc "The port that the Sensu Dashboard should listen on"

defaultto '5671'
defaultto '5672'
end

newproperty(:host) do
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/type/sensu_rabbitmq_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def initialize(*args)
newproperty(:port) do
desc "The port that RabbitMQ is listening on"

defaultto '5671'
defaultto '5672'
end

newproperty(:host) do
Expand Down
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
#
# [*rabbitmq_port*]
# Integer. Rabbitmq port to be used by sensu
# Default: 5671
# Default: 5672
#
# [*rabbitmq_host*]
# String. Host running rabbitmq for sensu
Expand Down Expand Up @@ -178,7 +178,7 @@
$dashboard = false,
$manage_services = true,
$manage_user = true,
$rabbitmq_port = 5671,
$rabbitmq_port = 5672,
$rabbitmq_host = 'localhost',
$rabbitmq_user = 'sensu',
$rabbitmq_password = '',
Expand Down

0 comments on commit a9edd94

Please sign in to comment.