[FIX] failed execution when using settingsonly

This commit is contained in:
Jannik Beyerstedt 2020-01-26 15:58:35 +01:00
parent 7879bf5f9c
commit 00c4c7eb96
1 changed files with 4 additions and 4 deletions

View File

@ -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