1

Misc home scripts

This commit is contained in:
Evan Pratten 2024-06-25 15:50:29 -04:00
parent bdcd9fbdad
commit 54645f4ba5
2 changed files with 15 additions and 0 deletions

4
scripts/home-get-temperatures Executable file
View File

@ -0,0 +1,4 @@
#! /bin/bash
set -e
http get "http://prometheus.vpn:9090/api/v1/query?query=home_controller_sensor_temperature_None" | jq -r '.data.result.[] | "\(.metric.friendly_name): \(.value.[1])°C"'

11
scripts/rebuild-udm-dns Executable file
View File

@ -0,0 +1,11 @@
#! /bin/bash
# Home router gives up on custom DNS configs sometimes. This script rebuilds them
set -e
echo "SSH-ing into the router to make changes.."
ssh root@10.80.0.1 <<EOF
echo "server=/vpn/10.10.0.1" > /run/dnsmasq.conf.d/local_custom_dns.conf;
echo "server=/0.10.10.in-addr.arpa/10.10.0.1" >> /run/dnsmasq.conf.d/local_custom_dns.conf;
kill \$(cat /run/dnsmasq.pid)
dig gateway.vpn
EOF