18 lines
505 B
YAML
18 lines
505 B
YAML
---
|
|
- name: load variables depending on language
|
|
ansible.builtin.include_tasks: variables.yml
|
|
|
|
- name: create Ansible Windows Group and User
|
|
ansible.builtin.include_tasks: ansible_user.yml
|
|
|
|
- name: configure hostname
|
|
ansible.builtin.include_tasks: hostname.yml
|
|
|
|
- name: configure OS description
|
|
ansible.builtin.include_tasks: description.yml
|
|
|
|
- name: install some useful packages
|
|
ansible.builtin.include_tasks: packages.yml
|
|
|
|
- name: scan for updates
|
|
ansible.builtin.include_tasks: updates.yml
|