Adding some usefull reminders

This commit is contained in:
L3D 2024-02-22 15:39:28 +01:00
parent 92ffd7574f
commit 3c0adcf3fe
Signed by: L3D
GPG Key ID: CD08445BFF4313D1
4 changed files with 44 additions and 4 deletions

2
host_vars/localhost.yml Normal file
View File

@ -0,0 +1,2 @@
---
gather_facts: false

View File

@ -0,0 +1,4 @@
---
task__sound_muted: true
task__sound_obs: true
task__obs_firewall: true

View File

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

View File

@ -2,7 +2,7 @@
- name: Check if ansible is not to old
hosts: localhost
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
@ -21,5 +21,5 @@
- {role: do1jlr.win_streamdeck, tags: streamdeck}
- {role: do1jlr.win_reaplugs236, tags: [reaper, obs, reaplugs236, reaplugs]}
# - {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]}