Skip to content
Snippets Groups Projects
Commit bb103db5 authored by Peter Palfrader's avatar Peter Palfrader
Browse files

Let the vidalia package override some of our init script settings.

People who have vidalia installed might not want to run Tor as a system
service. The vidalia .deb can ask them that and then set run-daemon
to no.
(cherry picked from commit 03b45a6f)
parent 85a92d43
No related branches found
No related tags found
No related merge requests found
......@@ -37,3 +37,10 @@ RUN_DAEMON="yes"
# Comment this out if you do not want to get coredumps
#
ulimit -c unlimited
# Let the vidalia package override some of our settings.
# People who have vidalia installed might not want to run Tor as a system
# service. The vidalia .deb can ask them that and then set run-daemon to no.
if [ -e /etc/default/tor.vidalia ] && [ -x /usr/bin/vidalia ]; then
. /etc/default/tor.vidalia
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment