From bae721cb242a0c58cafe026dac3bf768283d2144 Mon Sep 17 00:00:00 2001 From: A Holt Date: Mon, 18 Sep 2017 23:43:59 -0400 Subject: [PATCH] remove "OS not supported" broken conditional This (flawed) error msg is universally deceptive/distracting to new installers. --- roles/1-prep/tasks/main.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/roles/1-prep/tasks/main.yml b/roles/1-prep/tasks/main.yml index 1c25c7fad..98d22594d 100644 --- a/roles/1-prep/tasks/main.yml +++ b/roles/1-prep/tasks/main.yml @@ -3,10 +3,6 @@ is_F18: True when: ansible_distribution_release == "based on Fedora 18" or ansible_distribution_version == "18" -- name: abort if the OS is not supported - debug: msg="{{ ansible_local.local_facts.os }} Operating System is not supported" - failed_when: ansible_local.local_facts.os_ver == "OS_not_supported" - - name: get the uuidgen program package: name=uuid-runtime state=present