diff options
| -rw-r--r-- | src/unbound-adblock/VERSION | 2 | ||||
| -rwxr-xr-x | src/unbound-adblock/bin/entrypoint.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/unbound-adblock/VERSION b/src/unbound-adblock/VERSION index 45c7a58..a3dce6c 100644 --- a/src/unbound-adblock/VERSION +++ b/src/unbound-adblock/VERSION @@ -1 +1 @@ -v0.0.1 +v0.0.2 diff --git a/src/unbound-adblock/bin/entrypoint.sh b/src/unbound-adblock/bin/entrypoint.sh index d1b4b3a..24a18a7 100755 --- a/src/unbound-adblock/bin/entrypoint.sh +++ b/src/unbound-adblock/bin/entrypoint.sh @@ -7,7 +7,7 @@ log() { # Setup chroot environment log "Setting up chroot environment..." -if /usr/lib/unbound/package-helper chroot_setup; then +if /usr/libexec/unbound-helper chroot_setup; then log "Chroot setup completed successfully" else log "ERROR: Chroot setup failed" @@ -16,7 +16,7 @@ fi # Update root trust anchor log "Updating root trust anchor..." -if /usr/lib/unbound/package-helper root_trust_anchor_update; then +if /usr/libexec/unbound-helper root_trust_anchor_update; then log "Root trust anchor updated successfully" else log "ERROR: Root trust anchor update failed" |