win_ansible_role_base_setup/tasks/main.yml

19 lines
505 B
YAML
Raw Normal View History

2021-12-15 01:03:37 +01:00
---
2022-01-01 21:00:56 +01:00
- name: load variables depending on language
ansible.builtin.include_tasks: variables.yml
2021-12-15 01:03:37 +01:00
- name: create Ansible Windows Group and User
2021-12-20 18:48:05 +01:00
ansible.builtin.include_tasks: ansible_user.yml
2021-12-20 18:20:40 +01:00
2021-12-20 19:10:07 +01:00
- name: configure hostname
ansible.builtin.include_tasks: hostname.yml
2021-12-20 18:20:40 +01:00
2022-01-02 16:40:53 +01:00
- name: configure OS description
ansible.builtin.include_tasks: description.yml
2021-12-20 19:54:35 +01:00
- name: install some useful packages
2021-12-20 19:42:55 +01:00
ansible.builtin.include_tasks: packages.yml
2021-12-20 19:10:07 +01:00
- name: scan for updates
ansible.builtin.include_tasks: updates.yml