2019-03-04 17:38:29 +01:00
|
|
|
Ansible role: ntp
|
|
|
|
======================
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2019-01-28 16:15:51 +01:00
|
|
|
This role provide a compliance for install ntp on your target host.
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2018-12-28 11:54:06 +01:00
|
|
|
## Requirements
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2019-01-28 16:15:51 +01:00
|
|
|
This role was developed using Ansible 2.7 Backwards compatibility is not guaranteed.
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2019-05-17 16:23:00 +02:00
|
|
|
```
|
2019-05-17 16:35:30 +02:00
|
|
|
Please have a look into the meta file for supportet platform overview!
|
|
|
|
|
|
|
|
Please note: It could need some fixes on exotic untested devices!
|
2018-12-28 11:54:06 +01:00
|
|
|
```
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2019-05-17 16:35:30 +02:00
|
|
|
|
2018-12-28 11:54:06 +01:00
|
|
|
## Role Variables
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2018-12-28 11:54:06 +01:00
|
|
|
This role has multiple variables. The defaults for all these variables are the following:
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2018-12-28 11:54:06 +01:00
|
|
|
```yaml
|
|
|
|
---
|
|
|
|
# defaults file for ansible-role-ntp
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2018-12-28 15:27:57 +01:00
|
|
|
# Restrict acces on ntp server
|
|
|
|
# Default is: ::1, 127.0.0.1
|
|
|
|
ntp_restrict:
|
|
|
|
- default nomodify notrap nopeer noquery
|
|
|
|
- 127.0.0.1
|
|
|
|
- ::1
|
|
|
|
|
|
|
|
# Ntp server to use for date synchronization
|
|
|
|
# Default is worldwide pool
|
|
|
|
ntp_servers:
|
|
|
|
- 0.pool.ntp.org iburst
|
|
|
|
- 1.pool.ntp.org iburst
|
|
|
|
- 2.pool.ntp.org iburst
|
|
|
|
- 3.pool.ntp.org iburst
|
|
|
|
|
|
|
|
# Enable or disable ntp statistics
|
|
|
|
# Default is false
|
|
|
|
ntp_statistics: false
|
2018-12-28 11:54:06 +01:00
|
|
|
```
|
2018-12-28 10:49:24 +01:00
|
|
|
|
2018-12-28 11:54:06 +01:00
|
|
|
## Resources
|
|
|
|
|
|
|
|
[ntp on ubuntu](https://doc.ubuntu-fr.org/ntp)
|
|
|
|
|
|
|
|
## Author Information
|
|
|
|
|
|
|
|
This role was created in 2018 by diodonfrost.
|
2021-03-19 19:21:29 +01:00
|
|
|
This role was updated and maintained since 2019 by L3D *([DO1JLR](https://github.com/do1jlr))*
|
|
|
|
|
|
|
|
## Testing
|
|
|
|
|
|
|
|
This role is using some github actions for testing. Because systemd operations inside docker containers do not work verry well only linting is tested.
|
|
|
|
If you have a idea how to improve the testing please leave a comment, create a issue or even better open a pull request.
|
|
|
|
|
|
|
|
We use these actions for testing:
|
|
|
|
|
|
|
|
| Status | Marketplace |
|
|
|
|
| ------ | ----------- |
|
|
|
|
| [![Ansible Lint check](https://github.com/roles-ansible/ansible_role_ntp/actions/workflows/ansible-linting-check.yml/badge.svg)](https://github.com/roles-ansible/ansible_role_ntp/actions/workflows/ansible-linting-check.yml) | [ansible-lint](https://github.com/marketplace/actions/ansible-lint) |
|
|
|
|
| [![Yamllint GitHub Actions](https://github.com/roles-ansible/ansible_role_ntp/actions/workflows/yamllint.yaml/badge.svg)](https://github.com/roles-ansible/ansible_role_ntp/actions/workflows/yamllint.yaml) | [yamllint-github-action](https://github.com/marketplace/actions/yamllint-github-action) |
|
|
|
|
| [![Galaxy release](https://github.com/roles-ansible/ansible_role_ntp/actions/workflows/galaxy.yml/badge.svg)](https://github.com/roles-ansible/ansible_role_ntp/actions/workflows/galaxy.yml) | [publish-ansible-role-to-galaxy](https://github.com/marketplace/actions/publish-ansible-role-to-galaxy)
|