Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madhacking/puppet-module-ntpclient
A puppet module to enable easy configuration of an NTP client
https://github.com/madhacking/puppet-module-ntpclient
ntp-client puppet puppet-module
Last synced: about 1 month ago
JSON representation
A puppet module to enable easy configuration of an NTP client
- Host: GitHub
- URL: https://github.com/madhacking/puppet-module-ntpclient
- Owner: MADhacking
- License: other
- Created: 2015-05-04T21:28:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-07T19:07:44.000Z (over 9 years ago)
- Last Synced: 2024-03-24T12:01:32.562Z (11 months ago)
- Topics: ntp-client, puppet, puppet-module
- Language: Puppet
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# /etc/conf.d/ntp-client module for Puppet
## Description
Puppet module for managing the /etc/conf.d/ntp-client file.## Example usage
class { 'ntpclient': servers => ['host1.example.com', 'host2.example.com'], }
### Resulting file#### /etc/conf.d/ntp-client
# This file is automatically generated by Puppet
#
# Any changes made to this file will be lost on the next automated Puppet run!
# Command to run to set the clock initially
NTPCLIENT_CMD="ntpdate"
# Options to pass to the above command
NTPCLIENT_OPTS="-s -b -u host1.example.com host2.example.com"