[TIDY] Update to ansible 4 module names
This commit is contained in:
parent
a384c4385a
commit
9f7fa75980
32 changed files with 139 additions and 121 deletions
|
@ -8,22 +8,21 @@
|
|||
# - Some can be run periodically
|
||||
# - Some must run periodically
|
||||
|
||||
|
||||
# if role has not changed, this will not be needed when just installing updates
|
||||
- name: Install essential tools
|
||||
include_tasks: essentials.yml
|
||||
ansible.builtin.include_tasks: essentials.yml
|
||||
when: common_settingsonly | default(false) == false
|
||||
|
||||
# if role has not changed, this will not be needed when just installing updates
|
||||
- name: Install more tools
|
||||
include_tasks: tools.yml
|
||||
ansible.builtin.include_tasks: tools.yml
|
||||
when: common_settingsonly | default(false) == false
|
||||
|
||||
# this will just run once, because of a lock-file
|
||||
- name: Basics - Setup user shell
|
||||
include_tasks: usersetup.yml
|
||||
ansible.builtin.include_tasks: usersetup.yml
|
||||
when: common_settingsonly | default(false) == false
|
||||
|
||||
# run this for every maintenance/ update cycle
|
||||
- name: Apply user settings
|
||||
import_tasks: usersettings.yml
|
||||
ansible.builtin.import_tasks: usersettings.yml
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue