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/tasks/packages/setup-Linux.yml

22 lines
426 B
YAML
Raw Normal View History

2018-12-28 11:54:06 +01:00
---
# Tasks file for install ntp daemon on Linux system
- name: Update emerge cache on Gentoo
2019-03-04 17:35:28 +01:00
become: yes
shell: emerge-webrsync
changed_when: false
when: ansible_os_family == "Gentoo"
2018-12-28 11:54:06 +01:00
- name: Install ntp daemon on Linux
2019-03-04 17:35:28 +01:00
become: yes
2018-12-28 11:54:06 +01:00
package:
name: "{{ ntp_package }}"
state: present
- name: Service ntp on Linux
2019-03-04 17:35:28 +01:00
become: yes
2018-12-28 11:54:06 +01:00
service:
name: "{{ ntp_service }}"
enabled: yes
state: started