From 00c4c7eb96fb71c650145a37f1dbb7edb3837ecf Mon Sep 17 00:00:00 2001 From: Jannik Beyerstedt Date: Sun, 26 Jan 2020 15:58:35 +0100 Subject: [PATCH] [FIX] failed execution when using settingsonly --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 03a50d8..85b29d9 100644 --- a/README.md +++ b/README.md @@ -55,23 +55,23 @@ You can simply run the whole role: hosts: all tasks: - name: Basics - Update first - import_role: + include_role: name: common tasks_from: update when: common_settingsonly | default(false) == false - name: Basics - Install essential tools - import_role: + include_role: name: common tasks_from: essentials when: common_settingsonly | default(false) == false - name: Basics - Install more tools - import_role: + include_role: name: common tasks_from: tools when: common_settingsonly | default(false) == false - name: Basics - Setup user shell - import_role: + include_role: name: common tasks_from: usersetup when: common_settingsonly | default(false) == false