From bf249f16b9a15de8b612fae1256e1dbe3d21afab Mon Sep 17 00:00:00 2001
From: Florian Pritz <bluewind@xinu.at>
Date: Wed, 13 Sep 2017 00:19:57 +0200
Subject: [PATCH] common: Remove ntp

Forgotten in "common: replace ntpd with timesyncd" (65122d6ae16f28f0feb0310636fb7170e79b9188).

Signed-off-by: Florian Pritz <bluewind@xinu.at>
---
 roles/common/tasks/main.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml
index 4ce8fa7ab..18f1841dc 100644
--- a/roles/common/tasks/main.yml
+++ b/roles/common/tasks/main.yml
@@ -3,8 +3,8 @@
 - name: configure pacman mirror
   template: src=mirrorlist.j2 dest=/etc/pacman.d/mirrorlist owner=root group=root mode=0644
 
-- name: install ntp
-  pacman: name=ntp state=present
+- name: remove ntp
+  pacman: name=ntp state=absent
 
 - name: start and enable systemd-timesyncd
   service: name=systemd-timesyncd enabled=yes state=started
-- 
GitLab