Adding some usefull reminders
This commit is contained in:
parent
92ffd7574f
commit
3c0adcf3fe
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
gather_facts: false
|
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
task__sound_muted: true
|
||||||
|
task__sound_obs: true
|
||||||
|
task__obs_firewall: true
|
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
- name: Reminder to mute sound
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: "Please Mute the Notification Sound of Windows"
|
||||||
|
when: task__sound_muted | bool
|
||||||
|
|
||||||
|
|
||||||
|
- name: Reminder to mute sound on Windows
|
||||||
|
community.windows.win_msg:
|
||||||
|
display_seconds: 60
|
||||||
|
msg: "Please Mute the Notification Sound of Windows"
|
||||||
|
when: task__sound_muted | bool
|
||||||
|
|
||||||
|
- name: Reminder to configure Sound inputs in OBS properly
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: "Please Remove Desktop Audio in OBS"
|
||||||
|
when: task__sound_obs | bool
|
||||||
|
|
||||||
|
- name: Reminder to configure Sound inputs in OBS properly on Windows
|
||||||
|
community.windows.win_msg:
|
||||||
|
display_seconds: 60
|
||||||
|
msg: "Please Remove Desktop Audio in OBS"
|
||||||
|
when: task__sound_obs | bool
|
||||||
|
|
||||||
|
- name: Reminder to configure OBS Network Properly
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: "Please add a Browsersource in OBS from vdo.ninja and configure firewall properly"
|
||||||
|
when: task__obs_firewall | bool
|
||||||
|
|
||||||
|
- name: Reminder to configure OBS Network Properly on Windows
|
||||||
|
community.windows.win_msg:
|
||||||
|
display_seconds: 60
|
||||||
|
msg: "Please add a Browsersource in OBS from vdo.ninja and configure firewall properly"
|
||||||
|
when: task__obs_firewall | bool
|
4
site.yml
4
site.yml
|
@ -2,7 +2,7 @@
|
||||||
- name: Check if ansible is not to old
|
- name: Check if ansible is not to old
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
roles:
|
roles:
|
||||||
- {role: do1jlr.ansible_version, tags: [default, version, default, always], gather_facts: false}
|
- {role: do1jlr.ansible_version, tags: [default, version, default, always]}
|
||||||
|
|
||||||
|
|
||||||
- name: Deploy windows users and basic config
|
- name: Deploy windows users and basic config
|
||||||
|
@ -21,5 +21,5 @@
|
||||||
- {role: do1jlr.win_streamdeck, tags: streamdeck}
|
- {role: do1jlr.win_streamdeck, tags: streamdeck}
|
||||||
- {role: do1jlr.win_reaplugs236, tags: [reaper, obs, reaplugs236, reaplugs]}
|
- {role: do1jlr.win_reaplugs236, tags: [reaper, obs, reaplugs236, reaplugs]}
|
||||||
# - {role: do1jlr.win_obs_szene, tags: [obs, szene]}
|
# - {role: do1jlr.win_obs_szene, tags: [obs, szene]}
|
||||||
# - {role: do1jlr.win_nextcloud, tags: nextcloud}
|
# - {role: do1jlr.win_nextcloud, tags: nextcloud} # currently instalaltion not working
|
||||||
# - {role: setup_secrets, tags: [secret]}
|
# - {role: setup_secrets, tags: [secret]}
|
||||||
|
|
Loading…
Reference in New Issue