dnscrypt-proxy-android/common/option.sh

14 lines
482 B
Bash
Raw Normal View History

2018-04-17 09:11:52 +00:00
2019-06-13 08:43:35 +00:00
CONFIG_FILE=/data/media/0/dnscrypt-proxy/dnscrypt-proxy.toml
2018-04-17 09:11:52 +00:00
2019-06-13 08:55:54 +00:00
if ! [ -f "$CONFIG_FILE" ]; then
2019-06-13 08:43:35 +00:00
# ui_print "* Backing up config file"
# cp -afv $CONFIG_FILE $TMPDIR
# ui_print "* Restoring config files"
# cp -af $TMPDIR/dnscrypt-proxy.toml $CONFIG_FILE
2019-06-13 08:55:54 +00:00
2019-06-13 08:43:35 +00:00
cp -afv /data/media/0/dnscrypt-proxy/example-dnscrypt-proxy.toml $CONFIG_FILE
sed -i -e 's/127.0.0.1:53/127.0.0.1:5354/g' $CONFIG_FILE
sed -i -e 's/\[::1\]:53/\[::1\]:5354/g' $CONFIG_FILE
fi