[TIDY] Set some "diff: false", fix linter warnings

This commit is contained in:
Jannik Beyerstedt 2023-04-28 23:25:25 +02:00
parent 47dd9508a6
commit f380e0ba29
34 changed files with 236 additions and 195 deletions

View file

@ -10,17 +10,17 @@
# if role has not changed, this will not be needed when just installing updates
- name: Install essential tools
when: common_settingsonly | default(false) == false
when: not (common_settingsonly | default(false))
ansible.builtin.include_tasks: essentials.yml
# if role has not changed, this will not be needed when just installing updates
- name: Install more tools
when: common_settingsonly | default(false) == false
when: not (common_settingsonly | default(false))
ansible.builtin.include_tasks: tools.yml
# this will just run once, because of a lock-file
- name: Basics - Setup user shell
when: common_settingsonly | default(false) == false
when: not (common_settingsonly | default(false))
ansible.builtin.include_tasks: usersetup.yml
# run this for every maintenance/ update cycle