Files
izbi-dns/run.sh
T

10 lines
124 B
Bash
Raw Normal View History

2026-08-21 23:19:27 +02:00
#!/bin/sh
/usr/sbin/dnsmasq -d --hostsdir /app/hosts.d/ -p 5353 &
/usr/local/bin/python3 /app/main.py &
wait -n
exit $?