[FIX] main.yml: apply better common_settingsonly check
This commit is contained in:
parent
0d68d4ac5b
commit
c34fb57d77
|
@ -10,22 +10,22 @@
|
||||||
|
|
||||||
- name: Install updates
|
- name: Install updates
|
||||||
include_tasks: update.yml
|
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
|
# if role has not changed, this will not be needed when just installing updates
|
||||||
- name: Install essential tools
|
- name: Install essential tools
|
||||||
include_tasks: essentials.yml
|
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
|
# if role has not changed, this will not be needed when just installing updates
|
||||||
- name: Install more tools
|
- name: Install more tools
|
||||||
include_tasks: tools.yml
|
include_tasks: tools.yml
|
||||||
when: common_settingsonly == false
|
when: common_settingsonly | default(false) == false
|
||||||
|
|
||||||
# this will just run once, because of a lock-file
|
# this will just run once, because of a lock-file
|
||||||
- name: Basics - Setup user shell
|
- name: Basics - Setup user shell
|
||||||
include_tasks: usersetup.yml
|
include_tasks: usersetup.yml
|
||||||
when: common_settingsonly == false
|
when: common_settingsonly | default(false) == false
|
||||||
|
|
||||||
# run this for every maintenance/ update cycle
|
# run this for every maintenance/ update cycle
|
||||||
- name: Apply user settings
|
- name: Apply user settings
|
||||||
|
|
Loading…
Reference in a new issue