Skip to content

Commit

Permalink
Merge pull request #184 from matjohn2/master
Browse files Browse the repository at this point in the history
Change default vhost to not include a slash and other readme fixes
  • Loading branch information
jlambert121 committed May 29, 2014
2 parents 7b33ef1 + 4d00cc8 commit 2f22c28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
#
# [*rabbitmq_vhost*]
# String. Rabbitmq vhost to be used by sensu
# Default: '/sensu'
# Default: 'sensu'
#
# [*rabbitmq_ssl_private_key*]
# String. Private key to be used by sensu to connect to rabbitmq
Expand Down
4 changes: 2 additions & 2 deletions spec/classes/sensu_rabbitmq_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
:rabbitmq_host => 'myhost',
:rabbitmq_user => 'sensuuser',
:rabbitmq_password => 'sensupass',
:rabbitmq_vhost => '/myvhost',
:rabbitmq_vhost => 'myvhost',
} }

it { should_not contain_file('/etc/sensu/ssl/cert.pem') }
Expand All @@ -32,7 +32,7 @@
:host => 'myhost',
:user => 'sensuuser',
:password => 'sensupass',
:vhost => '/myvhost',
:vhost => 'myvhost',
:ssl_cert_chain => '/etc/private/ssl/cert.pem',
:ssl_private_key => '/etc/private/ssl/key.pem'
) }
Expand Down

0 comments on commit 2f22c28

Please sign in to comment.