Skip to content

Commit

Permalink
Fix in documentation for dhcp::pool. range should be array instead of…
Browse files Browse the repository at this point in the history
… string.
  • Loading branch information
bjvrielink committed May 5, 2015
1 parent 6b2f888 commit edadbfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Define the pool attributes
dhcp::pool{ 'ops.dc1.example.net':
network => '10.0.1.0',
mask => '255.255.255.0',
range => '10.0.1.100 10.0.1.200',
range => ['10.0.1.100', '10.0.1.200'],
gateway => '10.0.1.1',
}

Expand Down

0 comments on commit edadbfb

Please sign in to comment.