lint: name tasks

Tasks must have names.

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/3285/head
Sébastien Han 2018-10-30 15:51:03 +01:00 committed by Guillaume Abrioux
parent 74ef7769fb
commit 7dab5d4ac2
2 changed files with 28 additions and 14 deletions

View File

@ -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"

View File

@ -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"