From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D8B2138350 for ; Fri, 7 Feb 2020 22:05:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E320E070D; Fri, 7 Feb 2020 22:05:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36ADCE070D for ; Fri, 7 Feb 2020 22:05:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C234834E8E2 for ; Fri, 7 Feb 2020 22:05:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E0653E for ; Fri, 7 Feb 2020 22:05:45 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1581113127.f227722412f34dc65619bbfaa71a14991bf13797.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/tor/files/tor.initd-r8 net-vpn/tor/files/torrc-r1 X-VCS-Directories: net-vpn/tor/files/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: f227722412f34dc65619bbfaa71a14991bf13797 X-VCS-Branch: master Date: Fri, 7 Feb 2020 22:05:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8a82825c-adf8-4bfd-9b9f-10e6477e5a96 X-Archives-Hash: 46982dc18774e28294de2084a1ad2292 commit: f227722412f34dc65619bbfaa71a14991bf13797 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Feb 5 08:16:06 2020 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Feb 7 22:05:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2277224 net-vpn/tor: remove unused files Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Anthony G. Basile gentoo.org> net-vpn/tor/files/tor.initd-r8 | 37 ------------------------------------- net-vpn/tor/files/torrc-r1 | 7 ------- 2 files changed, 44 deletions(-) diff --git a/net-vpn/tor/files/tor.initd-r8 b/net-vpn/tor/files/tor.initd-r8 deleted file mode 100644 index de9b66eb555..00000000000 --- a/net-vpn/tor/files/tor.initd-r8 +++ /dev/null @@ -1,37 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -command=/usr/bin/tor -pidfile=/var/run/tor/tor.pid -command_args="--hush --runasdaemon 1 --pidfile \"${pidfile}\"" -retry=${GRACEFUL_TIMEOUT:-60} -stopsig=INT -command_progress=yes - -extra_commands="checkconfig" -extra_started_commands="reload" -description="Anonymizing overlay network for TCP" -description_checkconfig="Check for valid config file" -description_reload="Reload the configuration" - -checkconfig() { - ${command} --verify-config --hush > /dev/null 2>&1 - if [ $? -ne 0 ] ; then - eerror "Tor configuration (/etc/tor/torrc) is not valid." - eerror "Example is in /etc/tor/torrc.sample" - return 1 - fi -} - -start_pre() { - checkconfig || return 1 - checkpath -d -m 0755 -o tor:tor /var/run/tor -} - -reload() { - checkconfig || return 1 - ebegin "Reloading Tor configuration" - start-stop-daemon -s HUP --pidfile ${pidfile} - eend $? -} diff --git a/net-vpn/tor/files/torrc-r1 b/net-vpn/tor/files/torrc-r1 deleted file mode 100644 index 322a794aa1d..00000000000 --- a/net-vpn/tor/files/torrc-r1 +++ /dev/null @@ -1,7 +0,0 @@ -# -# Minimal torrc so tor will work out of the box -# -User tor -PIDFile /var/run/tor/tor.pid -Log notice syslog -DataDirectory /var/lib/tor/data