[FIX] failed execution when using settingsonly
This commit is contained in:
parent
7879bf5f9c
commit
00c4c7eb96
|
@ -55,23 +55,23 @@ You can simply run the whole role:
|
||||||
hosts: all
|
hosts: all
|
||||||
tasks:
|
tasks:
|
||||||
- name: Basics - Update first
|
- name: Basics - Update first
|
||||||
import_role:
|
include_role:
|
||||||
name: common
|
name: common
|
||||||
tasks_from: update
|
tasks_from: update
|
||||||
when: common_settingsonly | default(false) == false
|
when: common_settingsonly | default(false) == false
|
||||||
- name: Basics - Install essential tools
|
- name: Basics - Install essential tools
|
||||||
import_role:
|
include_role:
|
||||||
name: common
|
name: common
|
||||||
tasks_from: essentials
|
tasks_from: essentials
|
||||||
when: common_settingsonly | default(false) == false
|
when: common_settingsonly | default(false) == false
|
||||||
- name: Basics - Install more tools
|
- name: Basics - Install more tools
|
||||||
import_role:
|
include_role:
|
||||||
name: common
|
name: common
|
||||||
tasks_from: tools
|
tasks_from: tools
|
||||||
when: common_settingsonly | default(false) == false
|
when: common_settingsonly | default(false) == false
|
||||||
|
|
||||||
- name: Basics - Setup user shell
|
- name: Basics - Setup user shell
|
||||||
import_role:
|
include_role:
|
||||||
name: common
|
name: common
|
||||||
tasks_from: usersetup
|
tasks_from: usersetup
|
||||||
when: common_settingsonly | default(false) == false
|
when: common_settingsonly | default(false) == false
|
||||||
|
|
Loading…
Reference in a new issue