initial commit

This commit is contained in:
Farhad Shahbazi
2016-03-05 16:30:21 +01:00
parent 879fdc14b4
commit acc8f15e9e
18 changed files with 679 additions and 0 deletions

11
tasks/ntp.yml Normal file
View File

@@ -0,0 +1,11 @@
---
- name: ntp - install
apt: name=ntp
when: ansible_virtualization_type != 'lxc' or ansible_virtualization_role == 'host'
tags: ['common', 'ntp']
- name: ntp - run and enable
service: name=ntp state=started enabled=yes
when: ansible_virtualization_type != 'lxc' or ansible_virtualization_role == 'host'
tags: ['common', 'ntp']