roles/common: Fix error in conditional

This commit is contained in:
Alan Orth 2017-11-05 01:41:38 +02:00
parent fec081d40a
commit 36d6360eeb
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

View File

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