Skip to content

Commit

Permalink
Merge pull request #234 from bastelfreak/update-readme
Browse files Browse the repository at this point in the history
extend Readme for a simple client
  • Loading branch information
hunner committed Jan 13, 2015
2 parents 9f2dd0d + 2be7648 commit 3de8b3b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,22 @@ class { '::ntp':
}
```

###I just want to install a client that can't be queried

```puppet
class { '::ntp':
servers => ['ntp1.corp.com', 'ntp2.corp.com'],
restrict => [
'default ignore',
'-6 default ignore',
'127.0.0.1',
'-6 ::1',
'ntp1.corp.com nomodify notrap nopeer noquery',
'ntp1.corp.com nomodify notrap nopeer noquery'
],
}
```

###I only want to listen on specific interfaces, not on 0.0.0.0

Restricting this is especially useful on Openstack nodes which may have numerous virtual interfaces.
Expand Down

0 comments on commit 3de8b3b

Please sign in to comment.