From 36d6360eeb059789966221c045a5dc16f194c348 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 5 Nov 2017 01:41:38 +0200 Subject: [PATCH] roles/common: Fix error in conditional --- roles/common/tasks/ntp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/common/tasks/ntp.yml b/roles/common/tasks/ntp.yml index 5d6eecc..6abb45a 100644 --- a/roles/common/tasks/ntp.yml +++ b/roles/common/tasks/ntp.yml @@ -19,7 +19,7 @@ - name: Install ntp on old Ubuntu/Debian apt: name=ntp state=present update_cache=yes - when: and ansible_service_mgr != 'systemd' + when: ansible_service_mgr != 'systemd' tags: packages # vim: set ts=2 sw=2: