🗃️ Committing everything that changed 🗃️

rootfs/root/docker/setup/02-packages.sh
rootfs/usr/local/etc/docker/functions/entrypoint.sh
rootfs/usr/local/etc/docker/init.d/01-tor-bridge.sh
rootfs/usr/local/etc/docker/init.d/02-tor-relay.sh
rootfs/usr/local/etc/docker/init.d/03-tor-server.sh
rootfs/usr/local/etc/docker/init.d/09-unbound.sh
rootfs/usr/local/etc/docker/init.d/98-privoxy.sh
rootfs/usr/local/etc/docker/init.d/99-php-fpm.sh
rootfs/usr/local/etc/docker/init.d/zz-nginx.sh
This commit is contained in:
casjay
2025-09-20 06:40:06 -04:00
parent 167f1a7107
commit 9324761bd7
9 changed files with 179 additions and 78 deletions

View File

@@ -24,10 +24,11 @@ set -o pipefail
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set env variables
exitCode=0
TOR_BIN_FILE="$(type -P tor)"
TOR_BIN_DIR="$(dirname "$TOR_BIN_FILE")"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Predefined actions
for file in tor-bridge tor-server tor-relay; do cp -Rf "$TOR_BIN_FILE" "$TOR_BIN_DIR/$file"; done
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script