12 lines
148 B
Bash
Executable File
12 lines
148 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p "$HOSTS_PATH"
|
|
|
|
/usr/sbin/dnsmasq -d --hostsdir "$HOSTS_PATH" -p 5353 &
|
|
|
|
/usr/local/bin/python3 /app/main.py &
|
|
|
|
wait -n
|
|
|
|
exit $?
|