From b34830702c553f2d10b06261f08aad716776984d Mon Sep 17 00:00:00 2001 From: bluemeda Date: Wed, 24 Apr 2019 22:14:41 +0700 Subject: [PATCH] move from xbin to bin #33 --- common/service.sh | 2 +- install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/service.sh b/common/service.sh index f7594b4..9b97b66 100755 --- a/common/service.sh +++ b/common/service.sh @@ -10,7 +10,7 @@ for i in 1 2 3 4 5 6 7 8 9 10 11 12; do ping -c 1 download.dnscrypt.info if [[ $? == 0 ]]; then - $MODDIR/system/xbin/dnscrypt-proxy -config $MODDIR/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml & + $MODDIR/system/bin/dnscrypt-proxy -config $MODDIR/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml & sleep 15 iptables -t nat -A OUTPUT -p tcp ! -d 9.9.9.9 --dport 53 -j DNAT --to-destination 127.0.0.1:5354 iptables -t nat -A OUTPUT -p udp ! -d 9.9.9.9 --dport 53 -j DNAT --to-destination 127.0.0.1:5354 diff --git a/install.sh b/install.sh index c93f949..36c4584 100755 --- a/install.sh +++ b/install.sh @@ -160,14 +160,14 @@ on_install() { unzip -o "$ZIP" 'config/*' 'binary/*' -d $TMPDIR 2>/dev/null ui_print "* Creating binary path" - mkdir -p $MODPATH/system/xbin 2>/dev/null + mkdir -p $MODPATH/system/bin 2>/dev/null ui_print "* Creating config path" mkdir -p $MODPATH/system/etc/dnscrypt-proxy 2>/dev/null if [ -f "$BINARY_PATH" ]; then ui_print "* Copying binary for $ARCH" - cp -af $BINARY_PATH $MODPATH/system/xbin/dnscrypt-proxy + cp -af $BINARY_PATH $MODPATH/system/bin/dnscrypt-proxy else abort "Binary file for $ARCH is missing!" fi