ntp
ntp copied to clipboard
ansible role ntp
Unfortunately this was missed in bennojoy/ntp#15
tasks/main.yml: --- - name: Add the OS specific varibles include_vars: "{{ ansible_os_family }}.yml" How to get system_family_version???? I have no idea.
Without a release one cannot install a specific version with galaxy
Needed to add this option on few of our servers and noticed this role was missing support for it.
After upgrading to ansible 2.0 I get the above error message. looks like this is it https://github.com/ansible/ansible/issues/11912 Change is to fix the environment line to be: ``` environment: "{{ env...
fatal: [localhost]: FAILED! => {"failed": true, "msg": "ERROR! environment must be a dictionary, received env ()"}
Fixes #8, allows much faster frequent deployments.
In `defaults/main.yml` IPv4 access is restricted to localhost via the line ``` - "restrict 127.0.0.1" ``` Consequently access via IPv6 should also be restricted by adding ``` - "restrict -6...
I run this role frequently in my vagrant tests, and every time it updates apt cache, which is slow/unnecessary.