Skip to content

Commit

Permalink
update doc: s/myhost/myvhost/ -- myvhost is easier to understand beca…
Browse files Browse the repository at this point in the history
…use it is self-describing
  • Loading branch information
Naveen Nathan authored and Naveen Nathan committed Apr 23, 2015
1 parent 4dd7d40 commit ce8c9a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -442,15 +442,15 @@ rabbitmq_user { 'dan':
query all current vhosts: `$ puppet resource rabbitmq_vhost`

```puppet
rabbitmq_vhost { 'myhost':
rabbitmq_vhost { 'myvhost':
ensure => present,
}
```

### rabbitmq\_exchange

```puppet
rabbitmq_exchange { 'myexchange@myhost':
rabbitmq_exchange { 'myexchange@myvhost':
user => 'dan',
password => 'bar',
type => 'topic',
Expand All @@ -467,7 +467,7 @@ rabbitmq_exchange { 'myexchange@myhost':
### rabbitmq\_queue

```puppet
rabbitmq_queue { 'myqueue@myhost':
rabbitmq_queue { 'myqueue@myvhost':
user => 'dan',
password => 'bar',
durable => true,
Expand All @@ -483,7 +483,7 @@ rabbitmq_queue { 'myqueue@myhost':
### rabbitmq\_binding

```puppet
rabbitmq_binding { 'myexchange@myqueue@myhost':
rabbitmq_binding { 'myexchange@myqueue@myvhost':
user => 'dan',
password => 'bar',
destination_type => 'queue',
Expand All @@ -496,7 +496,7 @@ rabbitmq_binding { 'myexchange@myqueue@myhost':
### rabbitmq\_user\_permissions

```puppet
rabbitmq_user_permissions { 'dan@myhost':
rabbitmq_user_permissions { 'dan@myvhost':
configure_permission => '.*',
read_permission => '.*',
write_permission => '.*',
Expand All @@ -506,7 +506,7 @@ rabbitmq_user_permissions { 'dan@myhost':
### rabbitmq\_policy

```puppet
rabbitmq_policy { 'ha-all@myhost':
rabbitmq_policy { 'ha-all@myvhost':
pattern => '.*',
priority => 0,
applyto => 'all',
Expand Down

0 comments on commit ce8c9a5

Please sign in to comment.