libreelec-conf/unset-dns.sh

11 lines
206 B
Bash
Raw Normal View History

#!/usr/bin/env bash
run_directory=$(dirname $(readlink -f "$0"))
source "$run_directory/variables.conf"
rm /run/libreelec/resolv.conf
mv /run/libreelec/resolv.conf.bck /run/libreelec/resolv.conf
exit 0