win_ansible_role_base_setup/tasks/main.yml

13 lines
329 B
YAML
Raw Normal View History

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
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