14 lines
424 B
Bash
14 lines
424 B
Bash
#!/system/bin/sh
|
|
# Do NOT assume where your module will be located.
|
|
# ALWAYS use $MODDIR if you need to know where this script
|
|
# and module is placed.
|
|
# This will make sure your module will still work
|
|
# if Magisk change its mount point in the future
|
|
MODDIR=${0%/*}
|
|
|
|
while ! [ `pgrep -x dnscrypt-proxy` ] ; do
|
|
$MODDIR/system/bin/dnscrypt-proxy -config /data/media/0/dnscrypt-proxy/dnscrypt-proxy.toml && sleep 15;
|
|
done
|
|
|
|
|