14 lines
437 B
YAML
14 lines
437 B
YAML
---
|
|
- name: create OBS User
|
|
ansible.builtin.include_tasks: obs_user.yml
|
|
|
|
- name: install some obs specific packages
|
|
ansible.builtin.include_tasks: packages.yml
|
|
|
|
- name: optionally autologon to obs user
|
|
ansible.builtin.include_tasks: autologon.yml
|
|
when: win_obs_init__autologon | bool
|
|
|
|
- name: change the power plan to high performance
|
|
ansible.builtin.include_tasks: powerplan.yml
|
|
when: win_obs_init__powerplan_enabled | bool
|