ansible-role-common/tasks/main.yml

21 lines
454 B
YAML

---
# Common setup tasks for all nodes (universial)
# ATTENTION: This is just the maintenance version of the Common role. Run all
# tasks during setup in this order:
# - essentials
# - tools
# - usersetup
# - usersettings
- name: Install updates
import_tasks: update.yml
- name: Install essential tools
import_tasks: essentials.yml
- name: Install more tools
import_tasks: tools.yml
- name: Apply user settings
import_tasks: usersettings.yml