UmVirt LFS Package info
DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a
APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f
tor
Tor is free and open-source software for enabling anonymous communication. The name is derived from an acronym for the original software project name "The Onion Router".Package info
Codename: tor
Source file: tor-0.4.8.10.tar.gz
Source directory: tor-0.4.8.10
Package URL: https://umvirt.com/linux/downloads/0.2.2/packages/t/tor-0.4.8.10.tar.gz
Package md5-checksum URL: https://umvirt.com/linux/downloads/0.2.2/packages/t/tor-0.4.8.10.tar.gz.md5sum
Dependances: libevent.
Dependance of: *** NO PACKAGES FOUND ***
Patches: *** NO PATCHES FOUND ***
Addons: *** NO ADDONS FOUND ***
Nestings *** NO NESTINGS FOUND ***
Configuration script:
./configure --prefix=/usr --sysconfdir=/etc --with-tor-user=tor --with-tor-group=tor --localstatedir=/var --enable-systemd
Build script:
make
Install script:
#add group
groupadd -fg 135 tor &&
#add user
useradd -c "Tor Daemon Owner" -d /var/run/tor -u 135 \
-g tor -s /bin/false tor
#install files
make install
#install service
cat > /usr/lib/systemd/system/tor.service << "EOF"
[Unit]
Description=Anonymizing Overlay Network
After=network.target
[Service]
Type=simple
User=tor
ExecStart=/usr/bin/tor
ExecReload=/bin/kill -HUP \$MAINPID
KillSignal=SIGINT
RuntimeDirectory=tor
[Install]
WantedBy=multi-user.target
EOF