1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_ntp.git synced 2024-08-16 12:59:49 +02:00
ansible_role_ntp/README.md

150 lines
3 KiB
Markdown
Raw Normal View History

2019-03-04 17:38:29 +01:00
Ansible role: ntp
======================
2018-12-28 10:49:24 +01:00
2019-05-17 16:23:00 +02:00
[![Build Status](https://travis-ci.org/cahos-bodensee/role-ntp.svg?branch=master)](https://travis-ci.org/chaos-bodensee/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
2018-12-28 11:54:06 +01:00
Supported platforms:
2018-12-28 10:49:24 +01:00
2019-05-17 16:23:00 +02:00
```
Please have a look into the meta file for this kind of information!
2018-12-28 11:54:06 +01:00
```
2018-12-28 10:49:24 +01: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
## Dependencies
2018-12-28 10:49:24 +01:00
2018-12-28 11:54:06 +01:00
None
## Example Playbook
2018-12-28 12:06:26 +01:00
This is a sample playbook file for deploying the Ansible Galaxy ntp role in a localhost.
2018-12-28 11:54:06 +01:00
```yaml
---
- hosts: localhost
become: true
roles:
- role: diodonfrost.ntp
```
## Local Testing
The preferred way of locally testing the role is to use Docker. You will have to install Docker on your system.
You can also use vagrant and Virtualbox with vagrant to run tests locally. You will have to install Virtualbox and Vagrant on your system. For all our tests we use test-kitchen.
Next install test-kitchen:
```shell
# Install dependencies
gem install bundler
bundle install
```
### Testing with Docker
```shell
# List all tests with kitchen
kitchen list
# fast test on one machine
kitchen test default-centos-7
# test on all machines
kitchen test
# for development, create environment
kitchen create default-centos-7
# Apply ansible playbook
kitchen converge default-centos-7
# Apply inspec tests
kitchen verify default-centos-7
```
### Testing with Virtualbox
```shell
# Specify kitchen file on Linux
export KITCHEN_YAML=.kitchen-vagrant.yml
# fast test on one machine
kitchen test os-packaging-freebsd-112
```
### Testing Windows and Solaris with Virtualbox
Windows and Solaris can only be test with Virtualbox provider,do not use 'kitchen test' command for testing Windows and Solaris environment. There 4 steps you will be using with test-kitchen as part of your workflow.
First of all we must set the kitchen file:
```shell
# For testing Windows
export KITCHEN_YAML=.kitchen-windows.yml
# For testing Solaris
export KITCHEN_YAML=.kitchen-solaris.yml
```
Provision the virtual machines, a Linux machine to run Ansible and Windows/Solaris machines to apply playbook again:
```shell
# deploy machines
kitchen create
# Launch playbook
kitchen converge
```
Finaly launch inspec tests:
```shell
kitchen verify
```
For cleaning environment use:
```shell
kitchen destroy
```
## License
Apache 2
## Resources
[ntp on ubuntu](https://doc.ubuntu-fr.org/ntp)
## Author Information
This role was created in 2018 by diodonfrost.