ntpd behind proxy fails

Change-Id: I0447e90f53f9b04315bc4e6618e528351521e05d
Closes-Bug: #1705558
This commit is contained in:
James Benson 2017-07-20 09:54:54 -05:00
parent ffc4fb3793
commit 8e1940d47a
2 changed files with 15 additions and 4 deletions

View File

@ -9,6 +9,8 @@ customize_etc_hosts: True
create_kolla_user: True
enable_host_ntp: True
docker_storage_driver: ""
debian_pkg_install:

View File

@ -66,18 +66,23 @@
name: ntp
state: stopped
become: True
when: ansible_os_family == "Debian"
when:
- ansible_os_family == "Debian"
- enable_host_ntp | bool
- name: Stop time service
service:
name: ntpd
state: stopped
become: True
when: ansible_os_family == "RedHat"
when:
- ansible_os_family == "RedHat"
- enable_host_ntp | bool
- name: Synchronizing time one-time
command: ntpd -gq
become: True
when: enable_host_ntp | bool
- name: Start time sync service
service:
@ -85,7 +90,9 @@
state: started
enabled: yes
become: True
when: ansible_os_family == "Debian"
when:
- ansible_os_family == "Debian"
- enable_host_ntp | bool
- name: Start time sync service
service:
@ -93,7 +100,9 @@
state: started
enabled: yes
become: True
when: ansible_os_family == "RedHat"
when:
- ansible_os_family == "RedHat"
- enable_host_ntp | bool
- name: Reboot
command: reboot -f