[FIX] add common_settingsonly flag to role as well

This commit is contained in:
Jannik Beyerstedt 2019-10-31 18:29:35 +01:00
parent cb3f6cdf7a
commit c37ae1742c
4 changed files with 24 additions and 10 deletions

View file

@ -9,21 +9,25 @@
# - Some must run periodically
- name: Install updates
import_tasks: update.yml
include_tasks: update.yml
when: common_settingsonly == false
# if role has not changed, this will not be needed when just installing updates
- name: Install essential tools
import_tasks: essentials.yml
include_tasks: essentials.yml
when: common_settingsonly == false
# if role has not changed, this will not be needed when just installing updates
- name: Install more tools
import_tasks: tools.yml
include_tasks: tools.yml
when: common_settingsonly == false
# this will just run once, because of a lock-file
- name: Basics - Setup user shell
import_tasks: usersetup.yml
include_tasks: usersetup.yml
when: common_settingsonly == false
# run this for every maintenance/ update cycle
- name: Apply user settings