Skip to content

Commit

Permalink
Merge pull request #102 from BillWeiss/fix-restrict-example
Browse files Browse the repository at this point in the history
Fixing examples of the restrict parameter
  • Loading branch information
Ashley Penney committed Sep 30, 2013
2 parents ef64a4f + 048eb5a commit 796710a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class { '::ntp':
```puppet
class { '::ntp':
servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],
restrict => 'restrict 127.0.0.1',
restrict => ['127.0.0.1'],
}
```

Expand All @@ -77,7 +77,7 @@ class { '::ntp':
```puppet
class { '::ntp':
servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],
restrict => 'restrict 127.0.0.1',
restrict => ['127.0.0.1'],
manage_service => false,
}
```
Expand All @@ -87,7 +87,7 @@ class { '::ntp':
```puppet
class { '::ntp':
servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],
restrict => 'restrict 127.0.0.1',
restrict => ['127.0.0.1'],
manage_service => false,
config_template => 'different/module/custom.template.erb',
}
Expand Down

0 comments on commit 796710a

Please sign in to comment.