Compare commits

..

No commits in common. "079b45be28812a7c42de66dd1682e2e563afae51" and "3f4bfe20619464136e4b8b61d2347e55f8bc33ab" have entirely different histories.

8 changed files with 7 additions and 23 deletions

View file

@ -1,6 +1,10 @@
- name: Provision powertop systemd service - name: set fan and thermal monitoring control
become: true become: true
ansible.builtin.template: command: smbios-thermal-ctl --set-thermal-mode quiet
- name: provision powertop systemd service
become: true
template:
src: 'templates/laptop/powertop.service.j2' src: 'templates/laptop/powertop.service.j2'
dest: '/etc/systemd/system/powertop.service' dest: '/etc/systemd/system/powertop.service'
owner: root owner: root

View file

@ -5,5 +5,3 @@ Name={{ vpn_default.interface }}
[Network] [Network]
Address={{ vpn_default.ip }}/{{ vpn_default.subnet }} Address={{ vpn_default.ip }}/{{ vpn_default.subnet }}
DNS={{ vpn_default.dns }}
Domains={{ vpn_default.domains | join(' ') }}

View file

@ -5,5 +5,3 @@ Name={{ vpn_media.interface }}
[Network] [Network]
Address={{ vpn_media.ip }}/{{ vpn_media.subnet }} Address={{ vpn_media.ip }}/{{ vpn_media.subnet }}
DNS={{ vpn_media.dns }}
Domains={{ vpn_media.domains | join(' ') }}

View file

@ -5,5 +5,3 @@ Name={{ vpn_default.interface }}
[Network] [Network]
Address={{ vpn_default.ip }}/{{ vpn_default.subnet }} Address={{ vpn_default.ip }}/{{ vpn_default.subnet }}
DNS={{ vpn_default.dns }}
Domains={{ vpn_default.domains | join(' ') }}

View file

@ -5,5 +5,3 @@ Name={{ vpn_media.interface }}
[Network] [Network]
Address={{ vpn_media.ip }}/{{ vpn_media.subnet }} Address={{ vpn_media.ip }}/{{ vpn_media.subnet }}
DNS={{ vpn_media.dns }}
Domains={{ vpn_media.domains | join(' ') }}

View file

@ -22,9 +22,6 @@ vpn_default:
ip: '10.0.0.3' ip: '10.0.0.3'
subnet: '24' subnet: '24'
interface: 'wg0' interface: 'wg0'
dns: '10.0.0.1'
domains:
- ~vpn.fudiggity.nl
public_key_path: '{{ vpn_config_dir }}/keys/public/default/desktop.pub' public_key_path: '{{ vpn_config_dir }}/keys/public/default/desktop.pub'
private_key_path: '{{ vpn_config_dir }}/keys/private/default/desktop.key' private_key_path: '{{ vpn_config_dir }}/keys/private/default/desktop.key'
@ -42,9 +39,6 @@ vpn_media:
ip: '10.0.1.3' ip: '10.0.1.3'
subnet: '24' subnet: '24'
interface: 'wg1' interface: 'wg1'
dns: '10.0.1.1'
domains:
- ~media-vpn.fudiggity.nl
public_key_path: '{{ vpn_config_dir }}/keys/public/media/desktop.pub' public_key_path: '{{ vpn_config_dir }}/keys/public/media/desktop.pub'
private_key_path: '{{ vpn_config_dir }}/keys/private/media/desktop.key' private_key_path: '{{ vpn_config_dir }}/keys/private/media/desktop.key'

View file

@ -26,9 +26,6 @@ vpn_default:
ip: '10.0.0.2' ip: '10.0.0.2'
subnet: '24' subnet: '24'
interface: 'wg0' interface: 'wg0'
dns: '10.0.0.1'
domains:
- ~vpn.fudiggity.nl
public_key_path: '{{ vpn_config_dir }}/keys/public/default/laptop.pub' public_key_path: '{{ vpn_config_dir }}/keys/public/default/laptop.pub'
private_key_path: '{{ vpn_config_dir }}/keys/private/default/laptop.key' private_key_path: '{{ vpn_config_dir }}/keys/private/default/laptop.key'
@ -45,9 +42,6 @@ vpn_media:
ip: '10.0.1.2' ip: '10.0.1.2'
subnet: '24' subnet: '24'
interface: 'wg1' interface: 'wg1'
dns: '10.0.1.1'
domains:
- ~media-vpn.fudiggity.nl
public_key_path: '{{ vpn_config_dir }}/keys/public/media/laptop.pub' public_key_path: '{{ vpn_config_dir }}/keys/public/media/laptop.pub'
private_key_path: '{{ vpn_config_dir }}/keys/private/media/laptop.key' private_key_path: '{{ vpn_config_dir }}/keys/private/media/laptop.key'

View file

@ -1,7 +1,7 @@
mpd_listen_address: '127.0.0.1' mpd_listen_address: '127.0.0.1'
mpd_listen_port: '6600' mpd_listen_port: '6600'
mpd_remote_address: 'vpn.fudiggity.nl' mpd_remote_address: '10.0.0.1'
mpd_remote_port: '21000' mpd_remote_port: '21000'
mpd_remote_stream_port: '8000' # note that this is not used (yet) mpd_remote_stream_port: '8000' # note that this is not used (yet)