use vars more properly
This commit is contained in:
parent
6b86e9d710
commit
6249b9b886
2 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ Ansible role to deploy a obs setup on windows
|
|||
|
||||
What we do:
|
||||
--------------
|
||||
+ Create User OBS
|
||||
+ Create User for OBS
|
||||
+ install OBS, VLC and MPV
|
||||
+ optionally configure autologon *(see ``win_obs_init__autologon_*`` variables)*
|
||||
+ change Power Plan to 'High Performance'
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
msg: "Please define a password for 'win_obs_init__password'!"
|
||||
when: win_obs_init__password == 'changeME'
|
||||
|
||||
- name: Create OBS User
|
||||
- name: "Create User {{ win_obs_init__user }}"
|
||||
ansible.windows.win_user:
|
||||
name: 'obs'
|
||||
name: "{{ win_obs_init__user }}"
|
||||
state: present
|
||||
password: "{{ win_obs_init__password }}"
|
||||
account_disabled: false
|
||||
|
|
Loading…
Reference in a new issue