Skip to content

Commit 09ae0f6

Browse files
atwardwyardley
authored andcommitted
Corrected config_data format
1 parent 5ea00e8 commit 09ae0f6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ class mongodb::server {
435435
```
436436

437437
##### `config_data`
438-
A hash to allow for additional configuration options
438+
A hash to allow for additional configuration options
439439
to be set in user-provided template.
440440

441441

templates/mongodb-shard.conf.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ unixSocketPrefix = <%= @unixsocketprefix %>
2222

2323
<% if @config_data -%>
2424
<% @config_data.each do |k,v| -%>
25-
<%= k %>: <%= v %>
25+
<%= k %> = <%= v %>
2626
<% end -%>
2727
<% end -%>

templates/mongodb.conf.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,6 @@ net.ssl.allowInvalidHostnames = <%= @ssl_invalid_hostnames %>
203203

204204
<% if @config_data -%>
205205
<% @config_data.each do |k,v| -%>
206-
<%= k %>: <%= v %>
206+
<%= k %> = <%= v %>
207207
<% end -%>
208208
<% end -%>

0 commit comments

Comments
 (0)