From e2d5b0252063dba94b60e05561c3374ae52f5741 Mon Sep 17 00:00:00 2001 From: timmui <50152641+iummit@users.noreply.github.com> Date: Mon, 6 May 2019 17:19:55 -0400 Subject: [PATCH] Update main.yml (#15) Fix wrong version checked --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index f6ab38b..7df09fc 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -5,7 +5,7 @@ msg: "This role can only be run agaist Ubuntu 18.04. {{ ansible_distribution }} {{ ansible_distribution_major_version }} is not supported." when: - not ansible_distribution == "Ubuntu" - - not ansible_distribution_release == "xenial" + - not ansible_distribution_release == "bionic" tags: - always