Enable and disable notifications during screen casting.

This commit is contained in:
Tom Alexander
2022-11-29 01:48:42 -05:00
parent 7039857b95
commit d6c2e72009
4 changed files with 36 additions and 7 deletions

View File

@@ -1,3 +1,16 @@
- name: Install scripts
copy:
src: "files/{{ item.src }}"
dest: "{{ item.dest }}"
mode: 0755
owner: root
group: wheel
loop:
- src: enable_notifications.bash
dest: /usr/local/bin/enable_notifications
- src: disable_notifications.bash
dest: /usr/local/bin/disable_notifications
- import_tasks: tasks/freebsd.yaml
when: 'os_flavor == "freebsd"'