From 5572a94e7776a612e4d33a1cbd80c66c2d310e2e Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Tue, 18 Apr 2023 19:17:37 -0700 Subject: [PATCH] fix logic --- tasks/authentication.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/authentication.yml b/tasks/authentication.yml index 751dca8..739afb5 100644 --- a/tasks/authentication.yml +++ b/tasks/authentication.yml @@ -51,5 +51,5 @@ enabled: true when: - ansible_facts['os_family'] == 'RedHat' - - ansible_facts['distribution_major_version']|int >= '8' + - ansible_facts['distribution_major_version']|int >= 8 ...