diff options
author | Stan Grishin <stangri@melmac.ca> | 2024-01-08 19:47:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 19:47:38 -0700 |
commit | d51ef581ef59ea6edeb4a058a2f67c272f113fbe (patch) | |
tree | 6fb6c9f349cdcdea07e759656ae811004b118c93 | |
parent | 28f62b101eb115d3e97b2ca72ae88b79a89efd96 (diff) | |
parent | dfeeabbebf7fa337f02fa24d40a488e2acfccbbb (diff) |
Merge pull request #23076 from stangri/master-adblock-fast
adblock-fast: bugfix: pause command
-rw-r--r-- | net/adblock-fast/Makefile | 2 | ||||
-rwxr-xr-x | net/adblock-fast/files/etc/init.d/adblock-fast | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/adblock-fast/Makefile b/net/adblock-fast/Makefile index 23f6568a1..50de95d95 100644 --- a/net/adblock-fast/Makefile +++ b/net/adblock-fast/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=adblock-fast PKG_VERSION:=1.1.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca> PKG_LICENSE:=GPL-3.0-or-later diff --git a/net/adblock-fast/files/etc/init.d/adblock-fast b/net/adblock-fast/files/etc/init.d/adblock-fast index 96ec21ddb..2ec53ec28 100755 --- a/net/adblock-fast/files/etc/init.d/adblock-fast +++ b/net/adblock-fast/files/etc/init.d/adblock-fast @@ -1728,7 +1728,7 @@ adb_start() { action="$(config_cache get 'trigger_service')" fw4_restart_flag="$(config_cache get 'trigger_fw4')" - if [ "$action" = 'on_boot' ] || [ "$param" = 'on_boot' ]; then + if [ "$action" = 'on_boot' ] || [ "$param" = 'on_boot' ] || [ "$param" = 'on_pause' ]; then if cache 'test_gzip' || cache 'test'; then action='restore' else |