From a9a3db1d3babbc74a94c26e4548434a5ced1f976 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 27 May 2015 21:15:06 +0000 Subject: [PATCH] Fix this conditional to work right when ostree isn't defined. --- tasks/cloud_setup_basic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/cloud_setup_basic.yml b/tasks/cloud_setup_basic.yml index 6404f5128a..8d2f934c8e 100644 --- a/tasks/cloud_setup_basic.yml +++ b/tasks/cloud_setup_basic.yml @@ -13,7 +13,7 @@ - name: ntp pkgs command: dnf install -y ntpdate ntp libsemanage-python libselinux-python - when: ansible_distribution_major_version > '21' and not ansible_cmdline.ostree + when: ansible_distribution_major_version > '21' and ansible_cmdline.ostree is not defined tags: - packages