Skip to content

Commit

Permalink
Update app-script
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese committed Sep 27, 2024
1 parent 837e14c commit 6e46ff0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions source/modules/apps/legacy-compat/app-script
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,11 @@ compose() {
# Then include a compose file for Tor
if [[ "${REMOTE_TOR_ACCESS}" == "true" ]]; then
mkdir -p /data/tor
cp "${SCRIPT_DOCKER_FRAGMENTS}/tor-entrypoint.sh" "$TOR_ENTRYPOINT_SCRIPT"
chmod +x "$TOR_ENTRYPOINT_SCRIPT"
echo "COPY ${SCRIPT_DOCKER_FRAGMENTS}/tor-entrypoint.sh $TOR_ENTRYPOINT_SCRIPT"
if [ ! -f "$TOR_ENTRYPOINT_SCRIPT" ]; then
cp "${SCRIPT_DOCKER_FRAGMENTS}/tor-entrypoint.sh" "$TOR_ENTRYPOINT_SCRIPT"
chmod +x "$TOR_ENTRYPOINT_SCRIPT"
fi
compose_files+=( "--file" "${tor_compose_file}" )
fi

Expand Down

0 comments on commit 6e46ff0

Please sign in to comment.