mirror of
https://github.com/jakejarvis/docker-tor.git
synced 2025-04-26 03:05:21 -04:00
9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
Executable File
#!/bin/sh
|
|
set -o errexit
|
|
|
|
# fix permissions
|
|
find /var/lib/tor -type d -exec chmod 700 {} \;
|
|
find /var/lib/tor -type f -exec chmod 600 {} \;
|
|
|
|
exec "$@"
|