Packages with configuration changes: +tor 0.4.5.10-1~deb11u1 amd64 +torbrowser-launcher 0.3.5-2 amd64 +torsocks 2.3.0-3 amd64 Package changes: +libdouble-conversion3 3.1.5-6.1 amd64 +libmd4c0 0.4.7-2 amd64 +libpcre2-16-0 10.36-2 amd64 +libqt5core5a 5.15.2+dfsg-9 amd64 +libqt5dbus5 5.15.2+dfsg-9 amd64 +libqt5designer5 5.15.2-5 amd64 +libqt5gui5 5.15.2+dfsg-9 amd64 +libqt5help5 5.15.2-5 amd64 +libqt5network5 5.15.2+dfsg-9 amd64 +libqt5printsupport5 5.15.2+dfsg-9 amd64 +libqt5sql5 5.15.2+dfsg-9 amd64 +libqt5sql5-sqlite 5.15.2+dfsg-9 amd64 +libqt5svg5 5.15.2-3 amd64 +libqt5test5 5.15.2+dfsg-9 amd64 +libqt5widgets5 5.15.2+dfsg-9 amd64 +libqt5xml5 5.15.2+dfsg-9 amd64 +libxcb-icccm4 0.4.1-1.1 amd64 +libxcb-image0 0.4.0-1+b3 amd64 +libxcb-keysyms1 0.4.0-1+b2 amd64 +libxcb-render-util0 0.3.9-1+b1 amd64 +libxcb-xinerama0 1.14-3 amd64 +libxcb-xinput0 1.14-3 amd64 +libxcb-xkb1 1.14-3 amd64 +libxkbcommon-x11-0 1.0.3-2 amd64 +python3-packaging 20.9-2 all +python3-pyparsing 2.4.7-1 all +python3-pyqt5 5.15.2+dfsg-3 amd64 +python3-pyqt5.sip 12.8.1-1+b2 amd64 +python3-socks 1.7.1+dfsg-1 all +qt5-gtk-platformtheme 5.15.2+dfsg-9 amd64 +qttranslations5-l10n 5.15.2-2 all +tor 0.4.5.10-1~deb11u1 amd64 +tor-geoipdb 0.4.5.10-1~deb11u1 all +torbrowser-launcher 0.3.5-2 amd64 +torsocks 2.3.0-3 amd64
76 lines
2.6 KiB
Plaintext
76 lines
2.6 KiB
Plaintext
# Defaults for tor initscript
|
|
# sourced by /etc/init.d/tor
|
|
# installed at /etc/default/tor by the maintainer scripts
|
|
#
|
|
# Note that this file is not being used for controlling Tor-startup
|
|
# when Tor is launched by systemd.
|
|
#
|
|
|
|
#
|
|
# This is a bash shell fragment
|
|
#
|
|
RUN_DAEMON="yes"
|
|
|
|
#
|
|
# Servers sometimes may need more than the default 1024 file descriptors
|
|
# if they are very busy and have many clients connected to them. The top
|
|
# servers as of early 2008 regularly have more than 10000 connected
|
|
# clients.
|
|
# (ulimit -n)
|
|
#
|
|
# (the default varies as it depends on the number of available system-wide file
|
|
# descriptors. See the init script in /etc/init.d/tor for details.)
|
|
#
|
|
# MAX_FILEDESCRIPTORS=
|
|
|
|
#
|
|
# If tor is seriously hogging your CPU, taking away too much cycles from
|
|
# other system resources, then you can renice tor. See nice(1) for a
|
|
# bit more information. Another way to limit the CPU usage of an Onion
|
|
# Router is to set a lower BandwidthRate, as CPU usage is mostly a function
|
|
# of the amount of traffic flowing through your node. Consult the torrc(5)
|
|
# manual page for more information on setting BandwidthRate.
|
|
#
|
|
# NICE="--nicelevel 5"
|
|
|
|
# Additional arguments to pass on tor's command line.
|
|
#
|
|
# ARGS="$ARGS "
|
|
|
|
#
|
|
# Uncomment the ulimit call below, and set "DisableDebuggerAttachment 0"
|
|
# in /etc/tor/torrc, if you want tor to produce coredumps on segfaults
|
|
# and assert errors.
|
|
#
|
|
# Keeping coredumps around is some sort of security issue since they
|
|
# may leak session keys, sensitive client data and more, should such
|
|
# files fall into the wrong hands. Therefore coredumps are not enabled
|
|
# by default.
|
|
#
|
|
# ulimit -c unlimited
|
|
|
|
#
|
|
# Config option for the weekly cron file: Whether or not to remove old
|
|
# coredumps in /var/lib/tor. Coredumps can hold sensitive data, as such
|
|
# they probably should not be kept lying around if nobody will ever look
|
|
# at them. This option makes /etc/cron.weekly/tor clean out files older
|
|
# then three weeks.
|
|
#
|
|
CLEANUP_OLD_COREFILES=y
|
|
|
|
#
|
|
# By default the tor init script will launch Tor using apparmor iff
|
|
# /usr/sbin/aa-status exists and is executable and calling it with --enabled
|
|
# returns true, /usr/sbin/aa-exec is executable, there is a
|
|
# /etc/apparmor.d/system_tor policy, and USE_AA_EXEC is set to 'yes'.
|
|
#
|
|
# USE_AA_EXEC="yes" # default
|
|
# USE_AA_EXEC="no"
|
|
|
|
# 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
|