committing changes in /etc made by "apt install torbrowser-launcher"

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
This commit is contained in:
root
2022-05-16 14:38:36 +02:00
parent 6f266b32e6
commit 8d303d2bbe
37 changed files with 951 additions and 1 deletions
View File
Executable
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
chown _runit-log:adm '/var/log/runit/tor'
chmod 750 '/var/log/runit/tor'
exec chpst -u _runit-log svlogd -tt '/var/log/runit/tor'
+1
View File
@@ -0,0 +1 @@
/run/runit/supervise/tor.log
Executable
+33
View File
@@ -0,0 +1,33 @@
#!/usr/bin/env /lib/runit/invoke-run
readonly daemon=/usr/bin/tor
exec 2>&1
# This directory is referenced in /usr/share/tor/tor-service-defaults-torrc
# and must exist.
readonly rundir=/run/tor
if ! [ -d "${rundir}" ]; then
mkdir -m 02755 "${rundir}"
chown debian-tor:debian-tor "${rundir}"
! [ -x /sbin/restorecon ] || /sbin/restorecon "${rundir}"
fi
MAX_FILEDESCRIPTORS="${MAX_FILEDESCRIPTORS:-65536}"
ulimit -n "${MAX_FILEDESCRIPTORS}"
# default invocation
set -- "${daemon}" \
--defaults-torrc /usr/share/tor/tor-service-defaults-torrc \
-f /etc/tor/torrc \
--Log 'notice stdout' \
--RunAsDaemon 0
if ! "$@" --verify-config ; then
echo "persistent error: Tor configuration is not valid"
exec sv down tor
fi
if aa-status --enabled ; then
set -- /usr/bin/aa-exec --profile=system_tor -- "$@"
fi
exec /usr/bin/env -i "$@"
+1
View File
@@ -0,0 +1 @@
/run/runit/supervise/tor