From c34fb57d776b4a9754fb90f0ca28f83034df4e6e Mon Sep 17 00:00:00 2001 From: Jannik Beyerstedt Date: Sat, 30 Nov 2019 18:37:22 +0100 Subject: [PATCH] [FIX] main.yml: apply better common_settingsonly check --- tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 12c2b18..6a750bb 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,22 +10,22 @@ - name: Install updates include_tasks: update.yml - when: common_settingsonly == false + when: common_settingsonly | default(false) == false # if role has not changed, this will not be needed when just installing updates - name: Install essential tools include_tasks: essentials.yml - when: common_settingsonly == false + when: common_settingsonly | default(false) == false # if role has not changed, this will not be needed when just installing updates - name: Install more tools include_tasks: tools.yml - when: common_settingsonly == false + when: common_settingsonly | default(false) == false # this will just run once, because of a lock-file - name: Basics - Setup user shell include_tasks: usersetup.yml - when: common_settingsonly == false + when: common_settingsonly | default(false) == false # run this for every maintenance/ update cycle - name: Apply user settings