mirror of https://github.com/ceph/ceph-ansible.git
lint: name tasks
Tasks must have names. Signed-off-by: Sébastien Han <seb@redhat.com>pull/3285/head
parent
74ef7769fb
commit
7dab5d4ac2
|
@ -1,11 +1,14 @@
|
|||
---
|
||||
- name: setup ntpd
|
||||
block:
|
||||
- command: timedatectl set-ntp no
|
||||
- package:
|
||||
- name: timedatectl set-ntp no
|
||||
command: timedatectl set-ntp no
|
||||
- name: install ntp
|
||||
package:
|
||||
name: ntp
|
||||
state: present
|
||||
- service:
|
||||
- name: start ntp
|
||||
service:
|
||||
name: ntp
|
||||
enabled: yes
|
||||
state: started
|
||||
|
@ -13,11 +16,14 @@
|
|||
|
||||
- name: setup chrony
|
||||
block:
|
||||
- command: timedatectl set-ntp no
|
||||
- package:
|
||||
- name: timedatectl set-ntp no
|
||||
command: timedatectl set-ntp no
|
||||
- name: install chrony
|
||||
package:
|
||||
name: chrony
|
||||
state: present
|
||||
- service:
|
||||
- name: start chronyd
|
||||
service:
|
||||
name: chronyd
|
||||
enabled: yes
|
||||
state: started
|
||||
|
@ -25,5 +31,6 @@
|
|||
|
||||
- name: setup timesyncd
|
||||
block:
|
||||
- command: timedatectl set-ntp on
|
||||
- name: timedatectl set-ntp on
|
||||
command: timedatectl set-ntp on
|
||||
when: ntp_daemon_type == "timesyncd"
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
---
|
||||
- name: setup ntpd
|
||||
block:
|
||||
- command: timedatectl set-ntp no
|
||||
- package:
|
||||
- name: timedatectl set-ntp no
|
||||
command: timedatectl set-ntp no
|
||||
- name: install ntp
|
||||
package:
|
||||
name: ntp
|
||||
state: present
|
||||
- service:
|
||||
- name: start ntp
|
||||
service:
|
||||
name: ntpd
|
||||
enabled: yes
|
||||
state: started
|
||||
|
@ -13,11 +16,14 @@
|
|||
|
||||
- name: setup chrony
|
||||
block:
|
||||
- command: timedatectl set-ntp no
|
||||
- package:
|
||||
- name: timedatectl set-ntp no
|
||||
command: timedatectl set-ntp no
|
||||
- name: install chrony
|
||||
package:
|
||||
name: chrony
|
||||
state: present
|
||||
- service:
|
||||
- name: start chrony
|
||||
service:
|
||||
name: chronyd
|
||||
enabled: yes
|
||||
state: started
|
||||
|
@ -25,5 +31,6 @@
|
|||
|
||||
- name: setup timesyncd
|
||||
block:
|
||||
- command: timedatectl set-ntp on
|
||||
- name: timedatectl set-ntp on
|
||||
command: timedatectl set-ntp on
|
||||
when: ntp_daemon_type == "timesyncd"
|
||||
|
|
Loading…
Reference in New Issue