diff --git a/host_vars/localhost.yml b/host_vars/localhost.yml new file mode 100644 index 0000000..024f91b --- /dev/null +++ b/host_vars/localhost.yml @@ -0,0 +1,2 @@ +--- +gather_facts: false diff --git a/roles/important_tasks/defaults/main.yml b/roles/important_tasks/defaults/main.yml new file mode 100644 index 0000000..dae711f --- /dev/null +++ b/roles/important_tasks/defaults/main.yml @@ -0,0 +1,4 @@ +--- +task__sound_muted: true +task__sound_obs: true +task__obs_firewall: true diff --git a/roles/important_tasks/tasks/main.yml b/roles/important_tasks/tasks/main.yml new file mode 100644 index 0000000..57debd1 --- /dev/null +++ b/roles/important_tasks/tasks/main.yml @@ -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 diff --git a/site.yml b/site.yml index fc3d2cb..cd1a4cb 100644 --- a/site.yml +++ b/site.yml @@ -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 @@ -20,6 +20,6 @@ # - {role: do1jlr.win_parsec, tags: parsec} - {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: setup_secrets, tags: [secret]} + # - {role: do1jlr.win_obs_szene, tags: [obs, szene]} + # - {role: do1jlr.win_nextcloud, tags: nextcloud} # currently instalaltion not working + # - {role: setup_secrets, tags: [secret]}