Misc home scripts
This commit is contained in:
parent
bdcd9fbdad
commit
54645f4ba5
4
scripts/home-get-temperatures
Executable file
4
scripts/home-get-temperatures
Executable 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
11
scripts/rebuild-udm-dns
Executable 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
|
Loading…
x
Reference in New Issue
Block a user