WakeOnLan, erste Versuche soundfix

This commit is contained in:
Frank Schiebel 2023-10-18 09:48:56 +02:00
parent cd7863c142
commit ae71f87b98
12 changed files with 153 additions and 12 deletions

View file

@ -53,6 +53,7 @@
- libnotify-bin ## needed for pwroff script
- neovim
- net-tools
- ethtool
- netcat-openbsd
- nmap
- tmux
@ -249,4 +250,39 @@
ansible.builtin.file:
path: /etc/firefox-esr/policies/firefox_policies.json
state: absent
##########
# Enable WOL
#
- name: Enable WOL
ansible.builtin.command: ethtool -s {{ ansible_default_ipv4.interface }} wol g
- name: Copy 81-wol.rules to target
copy:
src: 81-wol.rules
dest: /etc/udev/rules.d/81-wol.rules
mode: '0644'
owner: root
group: root
##########
# Laptop Skripte
#
- name: Copy qgm-soudfix.sh
copy:
src: qgm-soundfix.sh
dest: /usr/local/bin/qgm-soundfix.sh
mode: '0755'
owner: root
group: root
- name: Copy qgm-soudfix.desktop
copy:
src: qgm-soundfix.desktop
dest: /usr/share/applications/qgm-soundfix.desktop
mode: '0644'
owner: root
group: root