Skip to content

Commit

Permalink
v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DennoN-RUS committed Jan 25, 2023
1 parent 9366815 commit 811636e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
sh: =~: unknown operand
BusyBox v1.31.0 () built-in shell (ash)
```
Что бы исправить это нужно обновить busybox командами
Что бы исправить это нужно обновить busybox командами (добавлено в скрипт установки начиная с версии v3.4.1)
```
opkg update
opkg upgrade busybox
Expand Down
9 changes: 8 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,11 @@ git clone -b v3.3.2 https://github.com/DennoN-RUS/Bird4Static.git
2) В diff_funk добавлен алгоритм проверки. Сейчас проверяется только скачанный список с антифильтра, если он придет пустой или не скачается, то изменения в маршруты внесены не будут (если сервис ляжет или изменится адрес, то пока не будет указан рабочий урл - скрипт не будет обнулять список роутов)
3) В установочном скрипте добавлена возможность выбрать из двух сервисов для получения списков блокировок или ввода своего

git clone -b v3.4 https://github.com/DennoN-RUS/Bird4Static.git
git clone -b v3.4 https://github.com/DennoN-RUS/Bird4Static.git

## v3.4.1

1) В скрипты установки/удаления добавлен пакет bind-libs, который в исключительных случаях не ставился вместе с bind-dig
2) В скрипт установки добавлено принудительное обновление busybox

git clone -b v3.4.1 https://github.com/DennoN-RUS/Bird4Static.git
6 changes: 5 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ else
echo "Starting install for double vpn"
fi

# Update busybox
opkg update
opkg upgrade busybox

# Installing packages
opkg install bird1-ipv4 curl cron bind-dig iprange whois
opkg install bird1-ipv4 curl cron bind-dig bind-libs iprange whois

# Getting the path to run the script
ABSOLUTE_FILENAME=`readlink -f "$0"`
Expand Down
2 changes: 1 addition & 1 deletion uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ answer=0; echo "Do you want remove 'cron'? 0 - no 1 - yes (default: no)"; read a
if [ "$answer" = "1" ]; then opkg remove cron; fi
# bind-dig
answer=0; echo "Do you want remove 'bind-dig'? 0 - no 1 - yes (default: no)"; read answer
if [ "$answer" = "1" ]; then opkg remove bind-dig; fi
if [ "$answer" = "1" ]; then opkg remove bind-dig bind-libs; fi
# iprange
answer=0; echo "Do you want remove 'iprange'? 0 - no 1 - yes (default: no)"; read answer
if [ "$answer" = "1" ]; then opkg remove iprange; fi
Expand Down

0 comments on commit 811636e

Please sign in to comment.