Skip to content

Commit

Permalink
#512: sharding.pp, ensure 'bind_ip' array not string
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff1evesque committed Oct 24, 2018
1 parent a6995a4 commit dc01ae0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/sharding.pp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
-> class {'mongodb::server':
shardsvr => true,
replset => 'rs1',
bind_ip => $::ipaddress,
bind_ip => [$::ipaddress],
}
-> class {'mongodb::client': }
mongodb_replset{'rs1':
Expand All @@ -46,7 +46,7 @@
-> class {'mongodb::server':
shardsvr => true,
replset => 'rs1',
bind_ip => $::ipaddress,
bind_ip => [$::ipaddress],
}
-> class {'mongodb::client': }
mongodb_replset{'rs1':
Expand Down

0 comments on commit dc01ae0

Please sign in to comment.