From 5e5424df6922c1c7505eb08a132faedfb3fc5ff7 Mon Sep 17 00:00:00 2001 From: Demian Date: Tue, 26 Feb 2019 12:19:34 +0100 Subject: [PATCH] fix OS is undefined error (#1335) --- roles/common/tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index a777eae..fcb5af1 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -3,6 +3,8 @@ - name: Check the system raw: uname -a register: OS + tags: + - update-users - include_tasks: ubuntu.yml when: '"Ubuntu" in OS.stdout or "Linux" in OS.stdout'