mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
11 lines
273 B
Bash
Executable File
11 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uclient-fetch --no-check-certificate -O - 'https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt' > /tmp/adnew.conf
|
|
if [ -s "/tmp/adnew.conf" ];then
|
|
/usr/share/adbyby/ad-update
|
|
fi
|
|
|
|
rm -f /tmp/adbyby.updated
|
|
sleep 10
|
|
/etc/init.d/adbyby restart
|